summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAkim Demaille <akim.demaille@gmail.com>2019-10-29 09:00:46 +0100
committerAkim Demaille <akim.demaille@gmail.com>2019-10-29 09:00:46 +0100
commitc53b37978414865082e3e3e23fec62d564f4b18c (patch)
tree09a8bc3670be66394e2112c4b8d111c8c836bfb3 /src
parentfead28d9e38603a932619a6df2edf95a93377df3 (diff)
downloadbison-c53b37978414865082e3e3e23fec62d564f4b18c.tar.gz
style: fix cpp indentation
Reported by syntax-check. * src/system.h: here.
Diffstat (limited to 'src')
-rw-r--r--src/system.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/system.h b/src/system.h
index 17301491..35d39f40 100644
--- a/src/system.h
+++ b/src/system.h
@@ -75,16 +75,16 @@ typedef size_t uintptr_t;
/* See https://lists.gnu.org/archive/html/bug-bison/2019-10/msg00061.html. */
-#if defined __GNUC__ && ! defined __clang__ && ! defined __ICC && __GNUC__ < 5
-# define IGNORE_TYPE_LIMITS_BEGIN \
- _Pragma ("GCC diagnostic push") \
- _Pragma ("GCC diagnostic ignored \"-Wtype-limits\"")
-# define IGNORE_TYPE_LIMITS_END \
- _Pragma ("GCC diagnostic pop")
-#else
-# define IGNORE_TYPE_LIMITS_BEGIN
-# define IGNORE_TYPE_LIMITS_END
-#endif
+# if defined __GNUC__ && ! defined __clang__ && ! defined __ICC && __GNUC__ < 5
+# define IGNORE_TYPE_LIMITS_BEGIN \
+ _Pragma ("GCC diagnostic push") \
+ _Pragma ("GCC diagnostic ignored \"-Wtype-limits\"")
+# define IGNORE_TYPE_LIMITS_END \
+ _Pragma ("GCC diagnostic pop")
+# else
+# define IGNORE_TYPE_LIMITS_BEGIN
+# define IGNORE_TYPE_LIMITS_END
+# endif
/*-----------------.