diff options
author | Bernard Normier <bernard@zeroc.com> | 2016-08-03 12:04:42 -0400 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2016-08-03 12:04:42 -0400 |
commit | 75cfd9e7ce57e061542ae0a20e5707bc7e0547ba (patch) | |
tree | 17f8209e2c35a578631353730def3f03c7c44e6f /cpp/src | |
parent | Better IceSSL lock initialization (diff) | |
download | ice-75cfd9e7ce57e061542ae0a20e5707bc7e0547ba.tar.bz2 ice-75cfd9e7ce57e061542ae0a20e5707bc7e0547ba.tar.xz ice-75cfd9e7ce57e061542ae0a20e5707bc7e0547ba.zip |
Added missing <iterator>
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/IceDiscovery/LocatorI.cpp | 2 | ||||
-rw-r--r-- | cpp/src/IceDiscovery/LookupI.cpp | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/cpp/src/IceDiscovery/LocatorI.cpp b/cpp/src/IceDiscovery/LocatorI.cpp index c3f3c87b2ed..2a071b08c91 100644 --- a/cpp/src/IceDiscovery/LocatorI.cpp +++ b/cpp/src/IceDiscovery/LocatorI.cpp @@ -14,6 +14,8 @@ #include <Ice/Communicator.h> #include <Ice/ObjectAdapter.h> +#include <iterator> + using namespace std; using namespace Ice; using namespace IceDiscovery; diff --git a/cpp/src/IceDiscovery/LookupI.cpp b/cpp/src/IceDiscovery/LookupI.cpp index 5ad2350c68b..7c5e3bc6371 100644 --- a/cpp/src/IceDiscovery/LookupI.cpp +++ b/cpp/src/IceDiscovery/LookupI.cpp @@ -14,6 +14,7 @@ #include <Ice/Initialize.h> #include <IceDiscovery/LookupI.h> +#include <iterator> using namespace std; using namespace Ice; |