diff options
author | Howard Hinnant <hhinnant@apple.com> | 2013-08-23 20:10:18 +0000 |
---|---|---|
committer | Howard Hinnant <hhinnant@apple.com> | 2013-08-23 20:10:18 +0000 |
commit | 145afa17caedb3ff6d58dfd75dd72047810190d1 (patch) | |
tree | 82cb5907a34ebde19e7a0d88f2f8a7ecebf93526 /libcxx/test/containers/sequences/vector/vector.modifiers/emplace.pass.cpp | |
parent | f9fe6250ffef0bcf65763dfe3310a8d2cb40c212 (diff) | |
download | bcm5719-llvm-145afa17caedb3ff6d58dfd75dd72047810190d1.tar.gz bcm5719-llvm-145afa17caedb3ff6d58dfd75dd72047810190d1.zip |
Rename _LIBCPP_DEBUG2 to _LIBCPP_DEBUG.
llvm-svn: 189140
Diffstat (limited to 'libcxx/test/containers/sequences/vector/vector.modifiers/emplace.pass.cpp')
-rw-r--r-- | libcxx/test/containers/sequences/vector/vector.modifiers/emplace.pass.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libcxx/test/containers/sequences/vector/vector.modifiers/emplace.pass.cpp b/libcxx/test/containers/sequences/vector/vector.modifiers/emplace.pass.cpp index fe2bf1b15e6..7cca940859a 100644 --- a/libcxx/test/containers/sequences/vector/vector.modifiers/emplace.pass.cpp +++ b/libcxx/test/containers/sequences/vector/vector.modifiers/emplace.pass.cpp @@ -11,7 +11,7 @@ // template <class... Args> iterator emplace(const_iterator pos, Args&&... args); -#if _LIBCPP_DEBUG2 >= 1 +#if _LIBCPP_DEBUG >= 1 #define _LIBCPP_ASSERT(x, m) ((x) ? (void)0 : std::exit(0)) #endif @@ -107,7 +107,7 @@ int main() assert(c.back().geti() == 3); assert(c.back().getd() == 4.5); } -#if _LIBCPP_DEBUG2 >= 1 +#if _LIBCPP_DEBUG >= 1 { std::vector<A> c1; std::vector<A> c2; @@ -140,7 +140,7 @@ int main() assert(c.back().geti() == 3); assert(c.back().getd() == 4.5); } -#if _LIBCPP_DEBUG2 >= 1 +#if _LIBCPP_DEBUG >= 1 { std::vector<A, min_allocator<A>> c1; std::vector<A, min_allocator<A>> c2; |