[PATCH] D50674: [libc++] Add missing #include in C11 features tests
Louis Dionne via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Aug 14 06:30:14 PDT 2018
This revision was automatically updated to reflect the committed changes.
Closed by commit rL339675: [libc++] Add missing #include in C11 features tests (authored by ldionne, committed by ).
Herald added a subscriber: llvm-commits.
Changed prior to commit:
https://reviews.llvm.org/D50674?vs=160475&id=160567#toc
Repository:
rL LLVM
https://reviews.llvm.org/D50674
Files:
libcxx/trunk/test/libcxx/language.support/has_c11_features.pass.cpp
libcxx/trunk/test/std/depr/depr.c.headers/float_h.pass.cpp
libcxx/trunk/test/std/language.support/support.limits/c.limits/cfloat.pass.cpp
Index: libcxx/trunk/test/std/language.support/support.limits/c.limits/cfloat.pass.cpp
===================================================================
--- libcxx/trunk/test/std/language.support/support.limits/c.limits/cfloat.pass.cpp
+++ libcxx/trunk/test/std/language.support/support.limits/c.limits/cfloat.pass.cpp
@@ -11,6 +11,8 @@
#include <cfloat>
+#include "test_macros.h"
+
#ifndef FLT_ROUNDS
#error FLT_ROUNDS not defined
#endif
Index: libcxx/trunk/test/std/depr/depr.c.headers/float_h.pass.cpp
===================================================================
--- libcxx/trunk/test/std/depr/depr.c.headers/float_h.pass.cpp
+++ libcxx/trunk/test/std/depr/depr.c.headers/float_h.pass.cpp
@@ -11,6 +11,8 @@
#include <float.h>
+#include "test_macros.h"
+
#ifndef FLT_ROUNDS
#error FLT_ROUNDS not defined
#endif
Index: libcxx/trunk/test/libcxx/language.support/has_c11_features.pass.cpp
===================================================================
--- libcxx/trunk/test/libcxx/language.support/has_c11_features.pass.cpp
+++ libcxx/trunk/test/libcxx/language.support/has_c11_features.pass.cpp
@@ -14,6 +14,9 @@
// _LIBCPP_HAS_C11_FEATURES - which is defined in <__config>
// They should always be the same
+#include <__config>
+#include "test_macros.h"
+
#ifdef TEST_HAS_C11_FEATURES
# ifndef _LIBCPP_HAS_C11_FEATURES
# error "TEST_HAS_C11_FEATURES is defined, but _LIBCPP_HAS_C11_FEATURES is not"
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D50674.160567.patch
Type: text/x-patch
Size: 1438 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180814/889b4787/attachment.bin>
More information about the llvm-commits
mailing list