From: Eric Fiselier Date: Fri, 29 Mar 2019 16:03:57 +0000 (+0000) Subject: Mark fenv.h as a system header before the #include_next directive X-Git-Tag: llvmorg-10-init~8890 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0706e144d57305782988dd4367530ae04986116f;p=platform%2Fupstream%2Fllvm.git Mark fenv.h as a system header before the #include_next directive This fixes a -Wgnu-include-next warning Patch by dmauro. llvm-svn: 357267 --- diff --git a/libcxx/include/fenv.h b/libcxx/include/fenv.h index 7cede4b..988cd9b 100644 --- a/libcxx/include/fenv.h +++ b/libcxx/include/fenv.h @@ -51,12 +51,13 @@ int feupdateenv(const fenv_t* envp); */ #include <__config> -#include_next #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) #pragma GCC system_header #endif +#include_next + #ifdef __cplusplus extern "C++" {