diff options
author | Marshall Clow <mclow.lists@gmail.com> | 2016-09-24 18:16:53 +0000 |
---|---|---|
committer | Marshall Clow <mclow.lists@gmail.com> | 2016-09-24 18:16:53 +0000 |
commit | 450370f3c86a3e41a3339b849a945ff912967c45 (patch) | |
tree | ea280b49be79b9686167b3944f8f08788b8827bd /libcxx/test/std | |
parent | e69a08ba6d2305b002f70ded1d60de4a17ca06cc (diff) | |
download | bcm5719-llvm-450370f3c86a3e41a3339b849a945ff912967c45.tar.gz bcm5719-llvm-450370f3c86a3e41a3339b849a945ff912967c45.zip |
Fix incorrect include in is_error_code_enum.pass.cpp
llvm-svn: 282332
Diffstat (limited to 'libcxx/test/std')
-rw-r--r-- | libcxx/test/std/diagnostics/syserr/is_error_code_enum.pass.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libcxx/test/std/diagnostics/syserr/is_error_code_enum.pass.cpp b/libcxx/test/std/diagnostics/syserr/is_error_code_enum.pass.cpp index 97f9e6acfe1..14f1af56212 100644 --- a/libcxx/test/std/diagnostics/syserr/is_error_code_enum.pass.cpp +++ b/libcxx/test/std/diagnostics/syserr/is_error_code_enum.pass.cpp @@ -9,11 +9,11 @@ // // UNSUPPORTED: c++03 -// <future> +// <system_error> // template <> struct is_error_code_enum<> : public false_type {}; -#include <future> +#include <system_error> #include <string> #include "test_macros.h" |