diff options
author | Eric Fiselier <eric@efcs.ca> | 2016-06-30 20:46:58 +0000 |
---|---|---|
committer | Eric Fiselier <eric@efcs.ca> | 2016-06-30 20:46:58 +0000 |
commit | 19cf6b6c9330edb16a401b72502ca1e089649ed2 (patch) | |
tree | 071d74ad7428902789f470c3e9dee5188a41f8d6 /libcxx/test/std/thread | |
parent | 8ba86a5a48b95fc7818946790fa8e97cbe98b62d (diff) | |
download | bcm5719-llvm-19cf6b6c9330edb16a401b72502ca1e089649ed2.tar.gz bcm5719-llvm-19cf6b6c9330edb16a401b72502ca1e089649ed2.zip |
Fix C++03 build.
llvm-svn: 274274
Diffstat (limited to 'libcxx/test/std/thread')
-rw-r--r-- | libcxx/test/std/thread/futures/futures.overview/future_errc.pass.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libcxx/test/std/thread/futures/futures.overview/future_errc.pass.cpp b/libcxx/test/std/thread/futures/futures.overview/future_errc.pass.cpp index b95a88ee2d0..06397487a73 100644 --- a/libcxx/test/std/thread/futures/futures.overview/future_errc.pass.cpp +++ b/libcxx/test/std/thread/futures/futures.overview/future_errc.pass.cpp @@ -9,6 +9,9 @@ // // UNSUPPORTED: libcpp-has-no-threads +// UNSUPPORTED: c++98, c++03 +// Libc++'s enum class emulation does not allow static_cast<Enum>(0) to work. + // <future> // enum class future_errc |