From 44f422ac91e7f8d804b60c407aaa5261331c10a7 Mon Sep 17 00:00:00 2001 From: Anders Jenbo Date: Fri, 26 Apr 2019 17:41:42 +0200 Subject: [PATCH] Fix compiler issue This was causing compiler issues with MSVC 2017 in DevilutionX --- Source/list.h | 4 ---- Source/msgcmd.cpp | 4 ++++ 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Source/list.h b/Source/list.h index 4c511a8c1..6009b153e 100644 --- a/Source/list.h +++ b/Source/list.h @@ -2,10 +2,6 @@ * based on https://github.com/webcoyote/coho/blob/master/Base/List.h */ -#include // for placement new -#include // for offsetof -#include // for typeid - #include "../3rdParty/Storm/Source/storm.h" #ifdef _MSC_VER diff --git a/Source/msgcmd.cpp b/Source/msgcmd.cpp index f97f20e50..d1d79ef3d 100644 --- a/Source/msgcmd.cpp +++ b/Source/msgcmd.cpp @@ -1,3 +1,7 @@ +#include // for placement new +#include // for offsetof +#include // for typeid + #include "diablo.h" #include "list.h"