From: Vadim Zeitlin Date: Sat, 9 May 2009 17:25:27 +0000 (+0000) Subject: compilation fix for Windows after the last change (misplaced #endif) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/3b84c8078e7be6fdb8afb369e559c331b5416da8 compilation fix for Windows after the last change (misplaced #endif) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@60575 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/private/sckaddr.h b/include/wx/private/sckaddr.h index a4971fd4aa..7babad5a8b 100644 --- a/include/wx/private/sckaddr.h +++ b/include/wx/private/sckaddr.h @@ -178,13 +178,13 @@ public: case FAMILY_INET6: CreateINET6(); break; -#endif +#endif // wxUSE_IPV6 #ifdef wxHAS_UNIX_DOMAIN_SOCKETS case FAMILY_UNIX: -#endif CreateUnix(); break; +#endif // wxHAS_UNIX_DOMAIN_SOCKETS default: wxFAIL_MSG( "unsupported socket address family" );