(svn r20574) -Codechange: a little over 1 million vehicles should be enough for the forseeable future

This commit is contained in:
rubidium
2010-08-19 20:58:30 +00:00
parent cc658392eb
commit 1fa98e1695
6 changed files with 15 additions and 7 deletions

View File

@@ -85,6 +85,12 @@ public:
*/
void AddConst(const char *var_name, int value);
/**
* Adds a const to the stack. Depending on the current state this means
* either a const to a class or to the global space.
*/
void AddConst(const char *var_name, uint value) { this->AddConst(var_name, (int)value); }
/**
* Adds a const to the stack. Depending on the current state this means
* either a const to a class or to the global space.
@@ -126,6 +132,7 @@ public:
void InsertResult(bool result);
void InsertResult(int result);
void InsertResult(uint result) { this->InsertResult((int)result); }
/**
* Call a method of an instance, in various flavors.