diff options
-rw-r--r-- | src/net/sdltcpnet.cpp | 8 | ||||
-rw-r--r-- | src/net/sdltcpnet.h | 3 |
2 files changed, 6 insertions, 5 deletions
diff --git a/src/net/sdltcpnet.cpp b/src/net/sdltcpnet.cpp index 48f68a8b2..3d6ee5d7d 100644 --- a/src/net/sdltcpnet.cpp +++ b/src/net/sdltcpnet.cpp @@ -18,10 +18,9 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#include "net/sdltcpnet.h" +#include "logger.h" #if defined __linux__ || defined __linux -#include "logger.h" #include <sys/socket.h> @@ -42,6 +41,11 @@ #endif +PRAGMACLANG6(GCC diagnostic push) +PRAGMACLANG6(GCC diagnostic ignored "-Wold-style-cast") +#include "net/sdltcpnet.h" +PRAGMACLANG6(GCC diagnostic pop) + #include "debug.h" #if !defined(__native_client__) \ diff --git a/src/net/sdltcpnet.h b/src/net/sdltcpnet.h index b67abfcc3..94855485d 100644 --- a/src/net/sdltcpnet.h +++ b/src/net/sdltcpnet.h @@ -30,10 +30,7 @@ #pragma GCC diagnostic pop #endif -PRAGMACLANG6(GCC diagnostic push) -PRAGMACLANG6(GCC diagnostic ignored "-Wold-style-cast") #include <SDL_net.h> -PRAGMACLANG6(GCC diagnostic pop) #include "localconsts.h" |