C4AulCompiler: Take GetStackValue out of public interface

directional-lights
Nicolas Hake 2016-04-29 12:02:37 +02:00
parent 792e12adad
commit 0342711cd4
2 changed files with 1 additions and 2 deletions

View File

@ -20,7 +20,7 @@
#include "script/C4Aul.h"
#include "script/C4AulScriptFunc.h"
int C4AulCompiler::GetStackValue(C4AulBCCType eType, intptr_t X)
static int GetStackValue(C4AulBCCType eType, intptr_t X)
{
switch (eType)
{

View File

@ -28,7 +28,6 @@ public:
bool fJump = false;
int iStack = 0;
int GetStackValue(C4AulBCCType eType, intptr_t X = 0);
int AddBCC(const char * SPos, C4AulBCCType eType, intptr_t X = 0);
void ErrorOut(const char * SPos, class C4AulError & e);
void RemoveLastBCC();