From 5df371c0c1fd751b196a2b1a5da09472fff265bb Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Thu, 13 Oct 2016 10:14:59 +0200 Subject: [PATCH] Oops! --- Installation/include/CGAL/config.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Installation/include/CGAL/config.h b/Installation/include/CGAL/config.h index 2a6c8187571..1f8324c1223 100644 --- a/Installation/include/CGAL/config.h +++ b/Installation/include/CGAL/config.h @@ -563,11 +563,11 @@ typedef const void * Nullptr_t; // Anticipate C++0x's std::nullptr_t // https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html #if __has_cpp_attribute(fallthrough) # define CGAL_FALLTHROUGH [[fallthrough]] -#elseif __has_cpp_attribute(gnu::fallthrough) +#elif __has_cpp_attribute(gnu::fallthrough) # define CGAL_FALLTHROUGH [[gnu::fallthrough]] -#elseif __has_cpp_attribute(clang::fallthrough) +#elif __has_cpp_attribute(clang::fallthrough) # define CGAL_FALLTHROUGH [[clang::fallthrough]] -#elseif __has_attribute(fallthrough) +#elif __has_attribute(fallthrough) # define CGAL_FALLTHROUGH __attribute__ ((fallthrough)) #else # define CGAL_FALLTHROUGH while(false){}