From 807f342f2def90a1178981910c4658882622d0e4 Mon Sep 17 00:00:00 2001 From: Marshall Clow Date: Wed, 28 Nov 2012 15:00:01 +0000 Subject: [PATCH] A few of the C++11 configuration tests had tests for features that didn't make it into the C++11 standard; remove those tests [SVN r81612] --- test/boost_no_cxx11_atomic_sp.ipp | 1 - test/boost_no_cxx11_hdr_future.ipp | 1 - test/boost_no_cxx11_hdr_type_traits.ipp | 1 - 3 files changed, 3 deletions(-) diff --git a/test/boost_no_cxx11_atomic_sp.ipp b/test/boost_no_cxx11_atomic_sp.ipp index 48f17c2e..42c9cb7f 100644 --- a/test/boost_no_cxx11_atomic_sp.ipp +++ b/test/boost_no_cxx11_atomic_sp.ipp @@ -25,7 +25,6 @@ int test() atomic_store(&spi, spi2); atomic_store_explicit(&spi, spi2, std::memory_order_relaxed); atomic_exchange(&spi, spi2); - atomic_exchange_explicit(&spi, std::memory_order_relaxed); atomic_compare_exchange_weak(&spi, &spi2, spi); atomic_compare_exchange_strong(&spi, &spi2, spi); atomic_compare_exchange_weak_explicit(&spi, &spi2, spi, std::memory_order_relaxed, std::memory_order_relaxed); diff --git a/test/boost_no_cxx11_hdr_future.ipp b/test/boost_no_cxx11_hdr_future.ipp index 3913e3c7..b19302d0 100644 --- a/test/boost_no_cxx11_hdr_future.ipp +++ b/test/boost_no_cxx11_hdr_future.ipp @@ -26,7 +26,6 @@ int test() using std::promise; using std::future; using std::shared_future; - using std::atomic_future; using std::packaged_task; // undefined using std::async; return 0; diff --git a/test/boost_no_cxx11_hdr_type_traits.ipp b/test/boost_no_cxx11_hdr_type_traits.ipp index 2b14d117..f33c5713 100644 --- a/test/boost_no_cxx11_hdr_type_traits.ipp +++ b/test/boost_no_cxx11_hdr_type_traits.ipp @@ -76,7 +76,6 @@ int test() using std::is_same; using std::is_base_of; using std::is_convertible; - using std::is_explicitly_convertible; using std::remove_const; using std::remove_volatile; using std::remove_cv;