kicad-developers team mailing list archive
-
kicad-developers team
-
Mailing list archive
-
Message #19469
[PATCH 2/3] Include <iso646.h> for "not", "and" and "or" keywords
These are not actually keywords in the C++ standard, but macros. Unless
<iso646.h> is included, these are not guaranteed to be present.
---
include/common.h | 2 ++
1 file changed, 2 insertions(+)
diff --git a/include/common.h b/include/common.h
index b881444..8be1e25 100644
--- a/include/common.h
+++ b/include/common.h
@@ -41,6 +41,8 @@
#include <richio.h>
#include <colors.h>
+#include <iso646.h>
+
class wxAboutDialogInfo;
class SEARCH_STACK;
Follow ups
References