diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2006-11-03 16:21:17 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2006-11-03 16:21:17 +0000 |
commit | fcb1e8b1ff69d60f3c5929099286d1d9387a263d (patch) | |
tree | 454397875cf9bb231a384a5b582484a857e707fb /cpp/src | |
parent | Fixed compile issues with MFC demos Added Makefiles for IcePatch2 demo (diff) | |
download | ice-fcb1e8b1ff69d60f3c5929099286d1d9387a263d.tar.bz2 ice-fcb1e8b1ff69d60f3c5929099286d1d9387a263d.tar.xz ice-fcb1e8b1ff69d60f3c5929099286d1d9387a263d.zip |
Fix build issue with VS2003 and VS2005
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/IceStorm/Flusher.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/cpp/src/IceStorm/Flusher.cpp b/cpp/src/IceStorm/Flusher.cpp index a96614f8840..b11d9e442a0 100644 --- a/cpp/src/IceStorm/Flusher.cpp +++ b/cpp/src/IceStorm/Flusher.cpp @@ -12,9 +12,12 @@ #include <IceStorm/TraceLevels.h> #include <IceUtil/Functional.h> -#include <Ice/Communicator.h> + #include <Ice/Properties.h> #include <Ice/LoggerUtil.h> +#include <Ice/Communicator.h> + +#include <Ice/Outgoing.h> // COMPILERFIX: Required for VS2003 and VS2005 builds to work! #include <algorithm> |