diff options
author | Bernard Normier <bernard@zeroc.com> | 2003-06-06 15:25:46 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2003-06-06 15:25:46 +0000 |
commit | 388366020d5b62c58689af3351531a88bb04dbb8 (patch) | |
tree | a5fe6d196e1eadd985b9641137f696a1a0335aab /cpp/test/Freeze/complex/Client.cpp | |
parent | Added Evictor::saveObject (diff) | |
download | ice-388366020d5b62c58689af3351531a88bb04dbb8.tar.bz2 ice-388366020d5b62c58689af3351531a88bb04dbb8.tar.xz ice-388366020d5b62c58689af3351531a88bb04dbb8.zip |
Changed the behavior of Freeze::Map::insert and added Freeze::Map::put
Diffstat (limited to 'cpp/test/Freeze/complex/Client.cpp')
-rw-r--r-- | cpp/test/Freeze/complex/Client.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/test/Freeze/complex/Client.cpp b/cpp/test/Freeze/complex/Client.cpp index b46011a354e..a8b3ecd2aba 100644 --- a/cpp/test/Freeze/complex/Client.cpp +++ b/cpp/test/Freeze/complex/Client.cpp @@ -85,7 +85,7 @@ populate(const DBPtr& db) Complex::Key k; k.expression = expressions[i]; k.result = root->calc(); - m.insert(pair<const Complex::Key, const Complex::NodePtr>(k, root)); + m.put(pair<const Complex::Key, const Complex::NodePtr>(k, root)); } cout << "ok" << endl; |