From 95fc27cba9a2241fbc438f3982f3642fe5a4bfe5 Mon Sep 17 00:00:00 2001 From: Lefteris Karapetsas Date: Thu, 15 Jan 2015 15:00:28 +0100 Subject: [PATCH] also add compiler error if include order could cause a problem in windows --- Token.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Token.h b/Token.h index 2d4441d08..e5c61c7e4 100644 --- a/Token.h +++ b/Token.h @@ -47,6 +47,10 @@ #include #include +#if defined(DELETE) +#error The macro "DELETE" from windows.h conflicts with this file. Please change the order of includes. +#endif + namespace dev { namespace solidity