diff options
Diffstat (limited to 'src/udpsocket.cpp')
-rw-r--r-- | src/udpsocket.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/udpsocket.cpp b/src/udpsocket.cpp index 91e04c1..b577302 100644 --- a/src/udpsocket.cpp +++ b/src/udpsocket.cpp | |||
@@ -5,6 +5,8 @@ | |||
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
6 | */ | 6 | */ |
7 | 7 | ||
8 | #ifndef WIN32 //not on windows | ||
9 | |||
8 | #include "bu/udpsocket.h" | 10 | #include "bu/udpsocket.h" |
9 | 11 | ||
10 | #include "bu/sio.h" | 12 | #include "bu/sio.h" |
@@ -238,3 +240,5 @@ Bu::String Bu::UdpSocket::getLocation() const | |||
238 | throw Bu::UnsupportedException(); | 240 | throw Bu::UnsupportedException(); |
239 | } | 241 | } |
240 | 242 | ||
243 | #endif | ||
244 | |||