From: Peter van Dijk Date: Fri, 24 Mar 2017 10:31:54 +0000 (+0100) Subject: Fix misc/exception.hpp include condition X-Git-Tag: rec-4.1.0-alpha1~171^2~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2dc07b95b3fe377cc9649c830724e458cce392e0;p=thirdparty%2Fpdns.git Fix misc/exception.hpp include condition luawrapper 93ab8b23 2d6e90a2 --- diff --git a/ext/luawrapper/include/LuaContext.hpp b/ext/luawrapper/include/LuaContext.hpp index 82982beec0..0cf1a434fd 100644 --- a/ext/luawrapper/include/LuaContext.hpp +++ b/ext/luawrapper/include/LuaContext.hpp @@ -54,7 +54,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #include #include -#ifdef _MSC_VER +#if defined(_MSC_VER) && _MSC_VER < 1900 # include "misc/exception.hpp" #endif