diff options
| author | Charles E. Rolke <chug@apache.org> | 2012-05-08 19:28:43 +0000 |
|---|---|---|
| committer | Charles E. Rolke <chug@apache.org> | 2012-05-08 19:28:43 +0000 |
| commit | 88ac0bf6c5fa8a9d7715fc8f57c6c9092f2bf795 (patch) | |
| tree | c9227d9b83a9189a7ddcd7a321516cf411c76ece /cpp/src/qpid/sys/windows/SystemInfo.cpp | |
| parent | c9a5a270603c6587eca167914a3e5b89e714f296 (diff) | |
| download | qpid-python-88ac0bf6c5fa8a9d7715fc8f57c6c9092f2bf795.tar.gz | |
QPID-3603 Added SystemInfo::isLocalHost
Repair r1335562 by including proper header files.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1335706 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/sys/windows/SystemInfo.cpp')
| -rwxr-xr-x | cpp/src/qpid/sys/windows/SystemInfo.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cpp/src/qpid/sys/windows/SystemInfo.cpp b/cpp/src/qpid/sys/windows/SystemInfo.cpp index f1b62d80ff..cef78dcc60 100755 --- a/cpp/src/qpid/sys/windows/SystemInfo.cpp +++ b/cpp/src/qpid/sys/windows/SystemInfo.cpp @@ -23,9 +23,11 @@ # define _WIN32_WINNT 0x0501 #endif -#include "qpid/sys/IntegerTypes.h" #include "qpid/sys/SystemInfo.h" +#include "qpid/sys/IntegerTypes.h" +#include "qpid/Exception.h"
+#include <assert.h> #include <winsock2.h> #include <ws2tcpip.h> #include <windows.h> |
