1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-19 14:31:59 +00:00

Made Variant::NIL printable as "Null". Please everyone be on the lookout of bugs related to assigning an empty variant to a string, and expecting it to be not empty!

This commit is contained in:
Juan Linietsky
2017-01-08 17:23:04 -03:00
parent 547a57777b
commit 10938e8bb9
2 changed files with 5 additions and 2 deletions

View File

@@ -1502,7 +1502,7 @@ Variant::operator String() const {
switch( type ) {
case NIL: return "";
case NIL: return "Null";
case BOOL: return _data._bool ? "True" : "False";
case INT: return String::num(_data._int);
case REAL: return String::num(_data._real);