diff options
Diffstat (limited to 'core/method_bind.h')
| -rw-r--r-- | core/method_bind.h | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/core/method_bind.h b/core/method_bind.h index a1ab4e58fc..d39f107ba6 100644 --- a/core/method_bind.h +++ b/core/method_bind.h @@ -39,6 +39,7 @@  #include "core/method_ptrcall.h"  #include "core/object.h"  #include "core/type_info.h" +#include "core/typedefs.h"  #include "core/variant.h"  #include <stdio.h> @@ -382,7 +383,7 @@ public:  	virtual bool is_vararg() const { return true; }  	MethodBindVarArg() { -		call_method = NULL; +		call_method = nullptr;  		_set_returns(true);  	}  };  |