diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2005-07-11 16:41:12 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2005-07-11 16:41:12 +0000 |
commit | 8ff7c2608eb845c3b6b637f4648ae726a11a158b (patch) | |
tree | f1dfb4d3a63752357480561fdd94f37692d8eb47 /cppe/demo/IceE/throughput/Client.cpp | |
parent | fix some recent changes to build in J2ME (diff) | |
download | ice-8ff7c2608eb845c3b6b637f4648ae726a11a158b.tar.bz2 ice-8ff7c2608eb845c3b6b637f4648ae726a11a158b.tar.xz ice-8ff7c2608eb845c3b6b637f4648ae726a11a158b.zip |
Put back IceUtil namespace
Diffstat (limited to 'cppe/demo/IceE/throughput/Client.cpp')
-rw-r--r-- | cppe/demo/IceE/throughput/Client.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cppe/demo/IceE/throughput/Client.cpp b/cppe/demo/IceE/throughput/Client.cpp index 0b1ff88b91e..9ff8ad955e7 100644 --- a/cppe/demo/IceE/throughput/Client.cpp +++ b/cppe/demo/IceE/throughput/Client.cpp @@ -99,7 +99,7 @@ run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator) } while(c != EOF && c == '\n'); - Ice::Time tm = Ice::Time::now(); + IceUtil::Time tm = IceUtil::Time::now(); const int repetitions = 1000; if(c == '1' || c == '2' || c == '3' || c == '4') @@ -327,7 +327,7 @@ run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator) } } - tm = Ice::Time::now() - tm; + tm = IceUtil::Time::now() - tm; printf("time for %d sequences: %fms\n", repetitions, tm.toMilliSecondsDouble()); printf("time per sequence: %fms\n", tm.toMilliSecondsDouble() / repetitions); int wireSize = 0; |