Browse Source

Undefine PASCAL if it's defined as a macro

Following 0af07017b9c2f14435bd0fd103ae199cbf840bb0
nemerle 8 years ago
parent
commit
73cf949e25
1 changed files with 3 additions and 0 deletions
  1. 3 0
      include/CallConvention.h

+ 3 - 0
include/CallConvention.h

@@ -1,6 +1,9 @@
 #pragma once
 #include "ast.h"
 
+#ifdef PASCAL
+#undef PASCAL
+#endif
 class QTextStream;
 
 struct CConv {