diff options
Diffstat (limited to 'core/math/expression.h')
| -rw-r--r-- | core/math/expression.h | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/core/math/expression.h b/core/math/expression.h index bbf946bb0a..78de225ebf 100644 --- a/core/math/expression.h +++ b/core/math/expression.h @@ -219,7 +219,7 @@ private:  		Type type; -		ENode() { next = NULL; } +		ENode() { next = nullptr; }  		virtual ~ENode() {  			if (next) {  				memdelete(next); @@ -352,7 +352,7 @@ protected:  public:  	Error parse(const String &p_expression, const Vector<String> &p_input_names = Vector<String>()); -	Variant execute(Array p_inputs, Object *p_base = NULL, bool p_show_error = true); +	Variant execute(Array p_inputs, Object *p_base = nullptr, bool p_show_error = true);  	bool has_execute_failed() const;  	String get_error_text() const;  |