summaryrefslogtreecommitdiff
path: root/cpp/demo/Freeze/bench/Client.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/demo/Freeze/bench/Client.cpp')
-rw-r--r--cpp/demo/Freeze/bench/Client.cpp11
1 files changed, 2 insertions, 9 deletions
diff --git a/cpp/demo/Freeze/bench/Client.cpp b/cpp/demo/Freeze/bench/Client.cpp
index 0d36bd9c5fd..26f5823ac54 100644
--- a/cpp/demo/Freeze/bench/Client.cpp
+++ b/cpp/demo/Freeze/bench/Client.cpp
@@ -596,11 +596,7 @@ TestApp::Struct1ObjectMapTest()
Class1Ptr c1 = new Class1();
Class2Ptr c2 = new Class2();
- //
- // ******* TODO ****** temporarily commented out
- //
- // c2->rec = c2;
-
+ c2->rec = c2;
c2->obj = c1;
int i;
_watch.start();
@@ -647,10 +643,7 @@ TestApp::Struct1ObjectMapTest()
Class2Ptr nc2 = Class2Ptr::dynamicCast(o);
test(nc2);
- //
- // ******* TODO ****** temporarily commented out
- //
- // test(nc2->rec == nc2);
+ test(nc2->rec == nc2);
nc1 = Class1Ptr::dynamicCast(nc2->obj);
}
else