- removed the GetConstantInt overloads since it appears they are not needed.

This commit is contained in:
Christoph Oelckers 2016-11-03 16:46:55 +01:00
parent 9188dc07a7
commit c9dad70408
1 changed files with 0 additions and 2 deletions

View File

@ -30,8 +30,6 @@ public:
// Returns the constant register holding the value.
int GetConstantInt(int val);
int GetConstantInt(size_t val) { return GetConstantInt(int(val)); }
int GetConstantInt(unsigned val) { return GetConstantInt(int(val)); }
int GetConstantFloat(double val);
int GetConstantAddress(void *ptr, VM_ATAG tag);
int GetConstantString(FString str);