I'm a doctor, not a mechanic

Talk:Constants

From Unreal Wiki, The Unreal Engine Documentation Site
Revision as of 22:33, 18 November 2015 by SeriousBarbie (Talk | contribs) (Constants with same name in different functions (UE1))

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Constants with same name in different functions (UE1)

The UE1 compiler UCC.EXE does not support constants with the same name in different functions.

Example:

class test expands Object;

function Nothing1() {
const CDebug = true;
        return;
}

function Nothing2() {
const CDebug = true;
        return;
}

On compiling this, a GPF occurs:


Parsing Test General protection fault!

History: FScriptCompiler::CompileConst <- Const <- FScriptCompiler::CompileDeclaration <- FScriptCompiler::CompileStatement <- FirstPass <- TryCompile <- FScriptCompiler::CompileScript <- (Class BarbiesWorld.Test, Pass 0, Line 9) <- MakeScript <- MakeScript <- DoScripts <- UEditorEngine::MakeScripts <- UMakeCommandlet::Main

Exiting due to error


--SeriousBarbie (talk) 23:33, 18 November 2015 (EST)