style: fix cpp indentation

Reported by syntax-check.

* src/system.h: here.
This commit is contained in:
Akim Demaille
2019-10-29 09:00:46 +01:00
parent fead28d9e3
commit c53b379784

View File

@@ -75,16 +75,16 @@ typedef size_t uintptr_t;
/* See https://lists.gnu.org/archive/html/bug-bison/2019-10/msg00061.html. */ /* See https://lists.gnu.org/archive/html/bug-bison/2019-10/msg00061.html. */
#if defined __GNUC__ && ! defined __clang__ && ! defined __ICC && __GNUC__ < 5 # if defined __GNUC__ && ! defined __clang__ && ! defined __ICC && __GNUC__ < 5
# define IGNORE_TYPE_LIMITS_BEGIN \ # define IGNORE_TYPE_LIMITS_BEGIN \
_Pragma ("GCC diagnostic push") \ _Pragma ("GCC diagnostic push") \
_Pragma ("GCC diagnostic ignored \"-Wtype-limits\"") _Pragma ("GCC diagnostic ignored \"-Wtype-limits\"")
# define IGNORE_TYPE_LIMITS_END \ # define IGNORE_TYPE_LIMITS_END \
_Pragma ("GCC diagnostic pop") _Pragma ("GCC diagnostic pop")
#else # else
# define IGNORE_TYPE_LIMITS_BEGIN # define IGNORE_TYPE_LIMITS_BEGIN
# define IGNORE_TYPE_LIMITS_END # define IGNORE_TYPE_LIMITS_END
#endif # endif
/*-----------------. /*-----------------.