Add some curly braces to make dictionary printing less ambiguous
This commit is contained in:
parent
a71a5fc0c3
commit
929b416fdb
1 changed files with 3 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue