1
0
mirror of https://github.com/godotengine/godot.git synced 2026-01-03 19:11:41 +00:00

Add some curly braces to make dictionary printing less ambiguous

This commit is contained in:
Tomasz Chabora
2018-08-09 21:44:41 +02:00
parent a71a5fc0c3
commit 929b416fdb

View File

@@ -1460,7 +1460,7 @@ Variant::operator String() const {
const Dictionary &d = *reinterpret_cast<const Dictionary *>(_data._mem);
//const String *K=NULL;
String str;
String str("{");
List<Variant> keys;
d.get_key_list(&keys);
@@ -1479,8 +1479,9 @@ Variant::operator String() const {
for (int i = 0; i < pairs.size(); i++) {
if (i > 0)
str += ", ";
str += "(" + pairs[i].key + ":" + pairs[i].value + ")";
str += pairs[i].key + ":" + pairs[i].value;
}
str += "}";
return str;
} break;