Switched operator[] access to node reference equality, not node equality

This commit is contained in:
beder
2011-09-09 02:39:36 -05:00
parent e32b3cd93f
commit 255a392eb9
2 changed files with 7 additions and 3 deletions

View File

@@ -20,5 +20,9 @@ int main()
names[4] = "four";
value["names"] = names;
value["this"] = value;
value["this"]["change"] = value;
value["this"]["change"] = 5;
return 0;
}