From c9dad704086ac9880ab207b90634107bddd7da52 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Thu, 3 Nov 2016 16:46:55 +0100 Subject: [PATCH] - removed the GetConstantInt overloads since it appears they are not needed. --- src/scripting/vm/vmbuilder.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/scripting/vm/vmbuilder.h b/src/scripting/vm/vmbuilder.h index c94d85f3cc..9a97c216d2 100644 --- a/src/scripting/vm/vmbuilder.h +++ b/src/scripting/vm/vmbuilder.h @@ -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);