From 32bac600f7695200dbeaf1cf6795950e9588f649 Mon Sep 17 00:00:00 2001 From: Gilles Gouaillardet Date: Fri, 5 Dec 2014 12:14:31 +0900 Subject: [PATCH] opal: fix a warning caused by the introduction of opal_int128_t type --- opal/include/opal_stdint.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opal/include/opal_stdint.h b/opal/include/opal_stdint.h index 713478a1d6..cab4f4d3a0 100644 --- a/opal/include/opal_stdint.h +++ b/opal/include/opal_stdint.h @@ -143,7 +143,7 @@ typedef uint128_t opal_uint128_t; #define HAVE_OPAL_INT128_T 1 -#elif HAVE___INT128 +#elif defined(HAVE___INT128) /* suppress warning about __int128 type */ #pragma GCC diagnostic ignored "-Wpedantic"