diff options
author | Brent Eagles <brent@zeroc.com> | 2006-08-15 09:18:03 +0000 |
---|---|---|
committer | Brent Eagles <brent@zeroc.com> | 2006-08-15 09:18:03 +0000 |
commit | 5342e7a9af90ea7bee02873ece8f7d0fb1248f7c (patch) | |
tree | 8e79f182c3097a7851628ce90fc89d00130807e5 | |
parent | Fixed -h 0.0.0.0 explanation. (diff) | |
download | ice-5342e7a9af90ea7bee02873ece8f7d0fb1248f7c.tar.bz2 ice-5342e7a9af90ea7bee02873ece8f7d0fb1248f7c.tar.xz ice-5342e7a9af90ea7bee02873ece8f7d0fb1248f7c.zip |
- Fix compilation errors that occurred under VS 2005
-rwxr-xr-x | perf/src/IceE/latency/Server.cpp | 1 | ||||
-rwxr-xr-x | perf/src/IceE/throughput/Server.cpp | 1 | ||||
-rw-r--r-- | perf/src/TAO/Roundtrip_Handler.h | 4 |
3 files changed, 4 insertions, 2 deletions
diff --git a/perf/src/IceE/latency/Server.cpp b/perf/src/IceE/latency/Server.cpp index 5316d8476dc..0a14761cdfb 100755 --- a/perf/src/IceE/latency/Server.cpp +++ b/perf/src/IceE/latency/Server.cpp @@ -9,6 +9,7 @@ #include <IceE/IceE.h> #include <Latency.h> +#include <IceE/IdentityUtil.h> #include <iostream> diff --git a/perf/src/IceE/throughput/Server.cpp b/perf/src/IceE/throughput/Server.cpp index 101d934897b..f5528f688a0 100755 --- a/perf/src/IceE/throughput/Server.cpp +++ b/perf/src/IceE/throughput/Server.cpp @@ -8,6 +8,7 @@ // ********************************************************************** #include <ThroughputI.h> +#include <IceE/IdentityUtil.h> #include <iostream> diff --git a/perf/src/TAO/Roundtrip_Handler.h b/perf/src/TAO/Roundtrip_Handler.h index 081ab2144ce..3bca0f46ad2 100644 --- a/perf/src/TAO/Roundtrip_Handler.h +++ b/perf/src/TAO/Roundtrip_Handler.h @@ -10,11 +10,11 @@ #ifndef ROUNDTRIP_HANDLER_H #define ROUNDTRIP_HANDLER_H +#include <TestS.h> + #include <IceUtil/Mutex.h> #include <IceUtil/Monitor.h> -#include <TestS.h> - #if defined (_MSC_VER) # if (_MSC_VER >= 1200) # pragma warning(push) |