summaryrefslogtreecommitdiffstats
path: root/test/std/containers/sequences/vector.bool/default_noexcept.pass.cpp
diff options
context:
space:
mode:
authorDan Albert <danalbert@google.com>2017-03-20 18:55:32 +0000
committerandroid-build-merger <android-build-merger@google.com>2017-03-20 18:55:32 +0000
commit484d8fb3291dd4d29c3d9ef6634cb9fdceb08595 (patch)
tree98be0728c8a7e96003719c4145662f487a663d81 /test/std/containers/sequences/vector.bool/default_noexcept.pass.cpp
parent43580c8f896fc0a272d6a45b280d6f08fb7c7719 (diff)
parented31f4b9be19ad4eaff38d16fe13a5f8e8da2c45 (diff)
downloadexternal_libcxx-484d8fb3291dd4d29c3d9ef6634cb9fdceb08595.tar.gz
external_libcxx-484d8fb3291dd4d29c3d9ef6634cb9fdceb08595.tar.bz2
external_libcxx-484d8fb3291dd4d29c3d9ef6634cb9fdceb08595.zip
Merge to upstream r297772. am: b9e7f084bd am: fabe890b75
am: ed31f4b9be Change-Id: Ieb19cbc938b9511d6441b9ac7cf6a3e13c4daf74
Diffstat (limited to 'test/std/containers/sequences/vector.bool/default_noexcept.pass.cpp')
-rw-r--r--test/std/containers/sequences/vector.bool/default_noexcept.pass.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/std/containers/sequences/vector.bool/default_noexcept.pass.cpp b/test/std/containers/sequences/vector.bool/default_noexcept.pass.cpp
index 4f860daba..4e71df374 100644
--- a/test/std/containers/sequences/vector.bool/default_noexcept.pass.cpp
+++ b/test/std/containers/sequences/vector.bool/default_noexcept.pass.cpp
@@ -31,14 +31,16 @@ struct some_alloc
int main()
{
+#if defined(_LIBCPP_VERSION)
{
typedef std::vector<bool> C;
- LIBCPP_STATIC_ASSERT(std::is_nothrow_default_constructible<C>::value, "");
+ static_assert(std::is_nothrow_default_constructible<C>::value, "");
}
{
typedef std::vector<bool, test_allocator<bool>> C;
- LIBCPP_STATIC_ASSERT(std::is_nothrow_default_constructible<C>::value, "");
+ static_assert(std::is_nothrow_default_constructible<C>::value, "");
}
+#endif // _LIBCPP_VERSION
{
typedef std::vector<bool, other_allocator<bool>> C;
static_assert(!std::is_nothrow_default_constructible<C>::value, "");