Once I get that upgrade to 36-hour days, I will tackle that. – Mychaeel

Difference between revisions of "Compiler errors overview"

From Unreal Wiki, The Unreal Engine Documentation Site
Jump to: navigation, search
(UE3)
(UE3)
Line 2: Line 2:
 
===Syntax Errors===
 
===Syntax Errors===
 
;Error, Failed to find DependsOn class 'interface name' while parsing 'class name' : the [[Classes|Implements]] modifier in the class declaration contains an incorrect interface name value.
 
;Error, Failed to find DependsOn class 'interface name' while parsing 'class name' : the [[Classes|Implements]] modifier in the class declaration contains an incorrect interface name value.
;Error, Could not load existing package file 'package path'
+
;Error, Could not load existing package file 'package path' :
 +
;Error, Type mismatch in Call to 'function name', parameter ''number'' :
 +
;Error, Bad or missing expression in Call to 'function name', parameter ''number'' :
 +
;Error, Bad or missing expression for token<nowiki>:</nowiki> '''function''', in 'Return' :
 +
;Error, Bad or missing expression for token<nowiki>:</nowiki> '''variable''', in 'If' : to note in this case the variable was an actor reference.
 +
;Error, Bad or missing expression after '+': 'variable name' : + being an incorrect operator usage?
 +
;Error, 'Ignores': 'ExecuteWhatToDoNext' is not a function
  
 
===Warnings===
 
===Warnings===
 
Warning, 'variable name' : local variable used before assigned a value
 
Warning, 'variable name' : local variable used before assigned a value
 +
Warning, 'variable name' : unreferenced local variable
 
{{expand}}
 
{{expand}}
  

Revision as of 01:07, 22 April 2010

UE3

Syntax Errors

Error, Failed to find DependsOn class 'interface name' while parsing 'class name' 
the Implements modifier in the class declaration contains an incorrect interface name value.
Error, Could not load existing package file 'package path' 
Error, Type mismatch in Call to 'function name', parameter number 
Error, Bad or missing expression in Call to 'function name', parameter number 
Error, Bad or missing expression for token: function, in 'Return' 
Error, Bad or missing expression for token: variable, in 'If' 
to note in this case the variable was an actor reference.
Error, Bad or missing expression after '+'
'variable name' : + being an incorrect operator usage?
Error, 'Ignores'
'ExecuteWhatToDoNext' is not a function

Warnings

Warning, 'variable name' : local variable used before assigned a value Warning, 'variable name' : unreferenced local variable


UE2

Legacy:Compiler_Errors

UE1