From 73cf949e25626f977c9086ff0cb0072a7d961f1b Mon Sep 17 00:00:00 2001 From: nemerle Date: Thu, 19 May 2016 10:20:51 +0200 Subject: [PATCH] Undefine PASCAL if it's defined as a macro Following 0af07017b9c2f14435bd0fd103ae199cbf840bb0 --- include/CallConvention.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/CallConvention.h b/include/CallConvention.h index 4c41633..b4648c8 100644 --- a/include/CallConvention.h +++ b/include/CallConvention.h @@ -1,6 +1,9 @@ #pragma once #include "ast.h" +#ifdef PASCAL +#undef PASCAL +#endif class QTextStream; struct CConv {