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]
This commit is contained in:
Marshall Clow
2012-11-28 15:00:01 +00:00
parent 513a54edea
commit 807f342f2d
3 changed files with 0 additions and 3 deletions

View File

@ -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);

View File

@ -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;

View File

@ -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;