]> granicus.if.org Git - graphviz/commitdiff
Remove HAVE_STDBOOL_H check from common/logic.h
authorErwin Janssen <erwinjanssen@outlook.com>
Mon, 6 Feb 2017 17:12:22 +0000 (18:12 +0100)
committerErwin Janssen <erwinjanssen@outlook.com>
Mon, 6 Mar 2017 10:12:55 +0000 (11:12 +0100)
This header check was removed earlier, but this one was missed. The C++
check can also be removed, because the stdbool.h header files includes is
check by itself.

lib/common/logic.h

index ea939986bb6e5c3de18d530b997864c3d9a20671..6934837374dc7a395aa4bde15de3c29ea4caeb46 100644 (file)
@@ -18,9 +18,7 @@
 extern "C" {
 #endif
 
-#if defined HAVE_STDBOOL_H && ! defined __cplusplus
 #include <stdbool.h>
-#endif
 
 #ifndef NOT
 #define NOT(v) (!(v))