summaryrefslogtreecommitdiffstats
path: root/libcxx
diff options
context:
space:
mode:
Diffstat (limited to 'libcxx')
-rw-r--r--libcxx/include/__config7
-rw-r--r--libcxx/include/__debug2
-rw-r--r--libcxx/include/__hash_table22
-rw-r--r--libcxx/include/iterator14
-rw-r--r--libcxx/include/list14
-rw-r--r--libcxx/include/vector6
-rw-r--r--libcxx/src/debug.cpp2
-rw-r--r--libcxx/test/containers/sequences/list/db_iterators_1.pass.cpp54
-rw-r--r--libcxx/test/containers/sequences/vector/db_iterators_1.pass.cpp54
-rw-r--r--libcxx/test/containers/unord/unord.multimap/db_iterators_1.pass.cpp54
-rw-r--r--libcxx/test/containers/unord/unord.multimap/db_local_iterators_1.pass.cpp43
-rw-r--r--libcxx/test/containers/unord/unord.multiset/db_iterators_1.pass.cpp54
-rw-r--r--libcxx/test/containers/unord/unord.multiset/db_local_iterators_1.pass.cpp43
-rw-r--r--libcxx/test/containers/unord/unord.set/db_iterators_1.pass.cpp54
-rw-r--r--libcxx/test/containers/unord/unord.set/db_local_iterators_1.pass.cpp43
-rw-r--r--libcxx/test/re/re.alg/re.alg.match/awk.pass.cpp16
-rw-r--r--libcxx/www/debug_mode.html30
17 files changed, 49 insertions, 463 deletions
diff --git a/libcxx/include/__config b/libcxx/include/__config
index fa6abf626ab..b1f0d9586ec 100644
--- a/libcxx/include/__config
+++ b/libcxx/include/__config
@@ -529,11 +529,4 @@ template <unsigned> struct __static_assert_check {};
#define _LIBCPP_CONSTEXPR_AFTER_CXX11 constexpr
#endif
-
-#ifdef _LIBCPP_DEBUG2
-# include <__debug>
-#else
-# define _LIBCPP_ASSERT(x, m) ((void)0)
-#endif
-
#endif // _LIBCPP_CONFIG
diff --git a/libcxx/include/__debug b/libcxx/include/__debug
index 0d631bf0438..4c920a7f4ae 100644
--- a/libcxx/include/__debug
+++ b/libcxx/include/__debug
@@ -171,7 +171,7 @@ public:
bool __decrementable(const void* __i) const;
bool __addable(const void* __i, ptrdiff_t __n) const;
bool __subscriptable(const void* __i, ptrdiff_t __n) const;
- bool __comparable(const void* __i, const void* __j) const;
+ bool __less_than_comparable(const void* __i, const void* __j) const;
private:
_LIBCPP_HIDDEN
__i_node* __insert_iterator(void* __i);
diff --git a/libcxx/include/__hash_table b/libcxx/include/__hash_table
index 0f722948f54..a8d922252e3 100644
--- a/libcxx/include/__hash_table
+++ b/libcxx/include/__hash_table
@@ -20,6 +20,12 @@
#include <__undef_min_max>
+#ifdef _LIBCPP_DEBUG2
+# include <__debug>
+#else
+# define _LIBCPP_ASSERT(x, m) ((void)0)
+#endif
+
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
#pragma GCC system_header
#endif
@@ -181,10 +187,6 @@ public:
friend _LIBCPP_INLINE_VISIBILITY
bool operator==(const __hash_iterator& __x, const __hash_iterator& __y)
{
-#if _LIBCPP_DEBUG_LEVEL >= 2
- _LIBCPP_ASSERT(__get_const_db()->__comparable(&__x, &__y),
- "Attempted to compare non-comparable unordered container iterator");
-#endif
return __x.__node_ == __y.__node_;
}
friend _LIBCPP_INLINE_VISIBILITY
@@ -329,10 +331,6 @@ public:
friend _LIBCPP_INLINE_VISIBILITY
bool operator==(const __hash_const_iterator& __x, const __hash_const_iterator& __y)
{
-#if _LIBCPP_DEBUG_LEVEL >= 2
- _LIBCPP_ASSERT(__get_const_db()->__comparable(&__x, &__y),
- "Attempted to compare non-comparable unordered container const_iterator");
-#endif
return __x.__node_ == __y.__node_;
}
friend _LIBCPP_INLINE_VISIBILITY
@@ -467,10 +465,6 @@ public:
friend _LIBCPP_INLINE_VISIBILITY
bool operator==(const __hash_local_iterator& __x, const __hash_local_iterator& __y)
{
-#if _LIBCPP_DEBUG_LEVEL >= 2
- _LIBCPP_ASSERT(__get_const_db()->__comparable(&__x, &__y),
- "Attempted to compare non-comparable unordered container local_iterator");
-#endif
return __x.__node_ == __y.__node_;
}
friend _LIBCPP_INLINE_VISIBILITY
@@ -636,10 +630,6 @@ public:
friend _LIBCPP_INLINE_VISIBILITY
bool operator==(const __hash_const_local_iterator& __x, const __hash_const_local_iterator& __y)
{
-#if _LIBCPP_DEBUG_LEVEL >= 2
- _LIBCPP_ASSERT(__get_const_db()->__comparable(&__x, &__y),
- "Attempted to compare non-comparable unordered container local_const_iterator");
-#endif
return __x.__node_ == __y.__node_;
}
friend _LIBCPP_INLINE_VISIBILITY
diff --git a/libcxx/include/iterator b/libcxx/include/iterator
index dda053da33b..4989d8b7a0d 100644
--- a/libcxx/include/iterator
+++ b/libcxx/include/iterator
@@ -321,8 +321,10 @@ template <class T, size_t N> T* end(T (&array)[N]);
#include <Availability.h>
#endif
-#ifdef _LIBCPP_DEBUG
-#include <cassert>
+#ifdef _LIBCPP_DEBUG2
+# include <__debug>
+#else
+# define _LIBCPP_ASSERT(x, m) ((void)0)
#endif
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
@@ -1264,10 +1266,6 @@ inline _LIBCPP_INLINE_VISIBILITY
bool
operator==(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter2>& __y) _NOEXCEPT
{
-#if _LIBCPP_DEBUG_LEVEL >= 2
- _LIBCPP_ASSERT(__get_const_db()->__comparable(&__x, &__y),
- "Attempted to compare incomparable iterators");
-#endif
return __x.base() == __y.base();
}
@@ -1277,7 +1275,7 @@ bool
operator<(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter2>& __y) _NOEXCEPT
{
#if _LIBCPP_DEBUG_LEVEL >= 2
- _LIBCPP_ASSERT(__get_const_db()->__comparable(&__x, &__y),
+ _LIBCPP_ASSERT(__get_const_db()->__less_than_comparable(&__x, &__y),
"Attempted to compare incomparable iterators");
#endif
return __x.base() < __y.base();
@@ -1353,7 +1351,7 @@ typename __wrap_iter<_Iter1>::difference_type
operator-(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter2>& __y) _NOEXCEPT
{
#if _LIBCPP_DEBUG_LEVEL >= 2
- _LIBCPP_ASSERT(__get_const_db()->__comparable(&__x, &__y),
+ _LIBCPP_ASSERT(__get_const_db()->__less_than_comparable(&__x, &__y),
"Attempted to subtract incompatible iterators");
#endif
return __x.base() - __y.base();
diff --git a/libcxx/include/list b/libcxx/include/list
index 628a35bade7..4041b88d6b1 100644
--- a/libcxx/include/list
+++ b/libcxx/include/list
@@ -178,6 +178,12 @@ template <class T, class Alloc>
#include <__undef_min_max>
+#ifdef _LIBCPP_DEBUG2
+# include <__debug>
+#else
+# define _LIBCPP_ASSERT(x, m) ((void)0)
+#endif
+
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
#pragma GCC system_header
#endif
@@ -350,10 +356,6 @@ public:
friend _LIBCPP_INLINE_VISIBILITY
bool operator==(const __list_iterator& __x, const __list_iterator& __y)
{
-#if _LIBCPP_DEBUG_LEVEL >= 2
- _LIBCPP_ASSERT(__get_const_db()->__comparable(&__x, &__y),
- "Attempted to compare non-comparable list::iterator");
-#endif
return __x.__ptr_ == __y.__ptr_;
}
friend _LIBCPP_INLINE_VISIBILITY
@@ -491,10 +493,6 @@ public:
friend _LIBCPP_INLINE_VISIBILITY
bool operator==(const __list_const_iterator& __x, const __list_const_iterator& __y)
{
-#if _LIBCPP_DEBUG_LEVEL >= 2
- _LIBCPP_ASSERT(__get_const_db()->__comparable(&__x, &__y),
- "Attempted to compare non-comparable list::const_iterator");
-#endif
return __x.__ptr_ == __y.__ptr_;
}
friend _LIBCPP_INLINE_VISIBILITY
diff --git a/libcxx/include/vector b/libcxx/include/vector
index 373e7c13d88..0758f75bf3b 100644
--- a/libcxx/include/vector
+++ b/libcxx/include/vector
@@ -272,6 +272,12 @@ void swap(vector<T,Allocator>& x, vector<T,Allocator>& y)
#include <__undef_min_max>
+#ifdef _LIBCPP_DEBUG2
+# include <__debug>
+#else
+# define _LIBCPP_ASSERT(x, m) ((void)0)
+#endif
+
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
#pragma GCC system_header
#endif
diff --git a/libcxx/src/debug.cpp b/libcxx/src/debug.cpp
index 04d570ed229..c9b09b7a540 100644
--- a/libcxx/src/debug.cpp
+++ b/libcxx/src/debug.cpp
@@ -354,7 +354,7 @@ __libcpp_db::__subscriptable(const void* __i, ptrdiff_t __n) const
}
bool
-__libcpp_db::__comparable(const void* __i, const void* __j) const
+__libcpp_db::__less_than_comparable(const void* __i, const void* __j) const
{
RLock _(mut());
__i_node* i = __find_iterator(__i);
diff --git a/libcxx/test/containers/sequences/list/db_iterators_1.pass.cpp b/libcxx/test/containers/sequences/list/db_iterators_1.pass.cpp
deleted file mode 100644
index ae278f78756..00000000000
--- a/libcxx/test/containers/sequences/list/db_iterators_1.pass.cpp
+++ /dev/null
@@ -1,54 +0,0 @@
-//===----------------------------------------------------------------------===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is dual licensed under the MIT and the University of Illinois Open
-// Source Licenses. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-
-// <list>
-
-// Compare iterators from different containers with == or !=.
-
-#if _LIBCPP_DEBUG2 >= 1
-
-#define _LIBCPP_ASSERT(x, m) ((x) ? (void)0 : std::exit(0))
-
-#include <list>
-#include <cassert>
-#include <iterator>
-#include <exception>
-#include <cstdlib>
-
-#include "../../min_allocator.h"
-
-int main()
-{
- {
- typedef int T;
- typedef std::list<T> C;
- C c1;
- C c2;
- bool b = c1.begin() != c2.begin();
- assert(false);
- }
-#if __cplusplus >= 201103L
- {
- typedef int T;
- typedef std::list<T, min_allocator<T>> C;
- C c1;
- C c2;
- bool b = c1.begin() != c2.begin();
- assert(false);
- }
-#endif
-}
-
-#else
-
-int main()
-{
-}
-
-#endif
diff --git a/libcxx/test/containers/sequences/vector/db_iterators_1.pass.cpp b/libcxx/test/containers/sequences/vector/db_iterators_1.pass.cpp
deleted file mode 100644
index 1ef4a27a8a6..00000000000
--- a/libcxx/test/containers/sequences/vector/db_iterators_1.pass.cpp
+++ /dev/null
@@ -1,54 +0,0 @@
-//===----------------------------------------------------------------------===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is dual licensed under the MIT and the University of Illinois Open
-// Source Licenses. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-
-// <vector>
-
-// Compare iterators from different containers with == or !=.
-
-#if _LIBCPP_DEBUG2 >= 1
-
-#define _LIBCPP_ASSERT(x, m) ((x) ? (void)0 : std::exit(0))
-
-#include <vector>
-#include <cassert>
-#include <iterator>
-#include <exception>
-#include <cstdlib>
-
-#include "../../min_allocator.h"
-
-int main()
-{
- {
- typedef int T;
- typedef std::vector<T> C;
- C c1;
- C c2;
- bool b = c1.begin() != c2.begin();
- assert(false);
- }
-#if __cplusplus >= 201103L
- {
- typedef int T;
- typedef std::vector<T, min_allocator<T>> C;
- C c1;
- C c2;
- bool b = c1.begin() != c2.begin();
- assert(false);
- }
-#endif
-}
-
-#else
-
-int main()
-{
-}
-
-#endif
diff --git a/libcxx/test/containers/unord/unord.multimap/db_iterators_1.pass.cpp b/libcxx/test/containers/unord/unord.multimap/db_iterators_1.pass.cpp
deleted file mode 100644
index f527f92499c..00000000000
--- a/libcxx/test/containers/unord/unord.multimap/db_iterators_1.pass.cpp
+++ /dev/null
@@ -1,54 +0,0 @@
-//===----------------------------------------------------------------------===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is dual licensed under the MIT and the University of Illinois Open
-// Source Licenses. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-
-// <unordered_map>
-
-// Compare iterators from different containers with == or !=.
-
-#if _LIBCPP_DEBUG2 >= 1
-
-#define _LIBCPP_ASSERT(x, m) ((x) ? (void)0 : std::exit(0))
-
-#include <unordered_map>
-#include <string>
-#include <cassert>
-#include <iterator>
-#include <exception>
-#include <cstdlib>
-
-#include "../../min_allocator.h"
-
-int main()
-{
- {
- typedef std::unordered_multimap<int, std::string> C;
- C c1;
- C c2;
- bool b = c1.begin() != c2.begin();
- assert(false);
- }
-#if __cplusplus >= 201103L
- {
- typedef std::unordered_multimap<int, std::string, std::hash<int>, std::equal_to<int>,
- min_allocator<std::pair<const int, std::string>>> C;
- C c1;
- C c2;
- bool b = c1.begin() != c2.begin();
- assert(false);
- }
-#endif
-}
-
-#else
-
-int main()
-{
-}
-
-#endif
diff --git a/libcxx/test/containers/unord/unord.multimap/db_local_iterators_1.pass.cpp b/libcxx/test/containers/unord/unord.multimap/db_local_iterators_1.pass.cpp
deleted file mode 100644
index c3e022d2d2b..00000000000
--- a/libcxx/test/containers/unord/unord.multimap/db_local_iterators_1.pass.cpp
+++ /dev/null
@@ -1,43 +0,0 @@
-//===----------------------------------------------------------------------===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is dual licensed under the MIT and the University of Illinois Open
-// Source Licenses. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-
-// <unordered_map>
-
-// Compare local_iterators from different containers with == or !=.
-
-#if _LIBCPP_DEBUG2 >= 1
-
-#define _LIBCPP_ASSERT(x, m) ((x) ? (void)0 : std::exit(0))
-
-#include <unordered_map>
-#include <string>
-#include <cassert>
-
-int main()
-{
- {
- typedef std::unordered_multimap<int, std::string> C;
- C c1;
- c1.insert(std::make_pair(1, "one"));
- C c2;
- c2.insert(std::make_pair(1, "one"));
- C::local_iterator i = c1.begin(c1.bucket(1));
- C::local_iterator j = c2.begin(c2.bucket(1));
- assert(i != j);
- assert(false);
- }
-}
-
-#else
-
-int main()
-{
-}
-
-#endif
diff --git a/libcxx/test/containers/unord/unord.multiset/db_iterators_1.pass.cpp b/libcxx/test/containers/unord/unord.multiset/db_iterators_1.pass.cpp
deleted file mode 100644
index cddf771d8fc..00000000000
--- a/libcxx/test/containers/unord/unord.multiset/db_iterators_1.pass.cpp
+++ /dev/null
@@ -1,54 +0,0 @@
-//===----------------------------------------------------------------------===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is dual licensed under the MIT and the University of Illinois Open
-// Source Licenses. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-
-// <unordered_set>
-
-// Compare iterators from different containers with == or !=.
-
-#if _LIBCPP_DEBUG2 >= 1
-
-#define _LIBCPP_ASSERT(x, m) ((x) ? (void)0 : std::exit(0))
-
-#include <unordered_set>
-#include <cassert>
-#include <iterator>
-#include <exception>
-#include <cstdlib>
-
-#include "../../min_allocator.h"
-
-int main()
-{
- {
- typedef int T;
- typedef std::unordered_multiset<T> C;
- C c1;
- C c2;
- bool b = c1.begin() != c2.begin();
- assert(false);
- }
-#if __cplusplus >= 201103L
- {
- typedef int T;
- typedef std::unordered_multiset<T, min_allocator<T>> C;
- C c1;
- C c2;
- bool b = c1.begin() != c2.begin();
- assert(false);
- }
-#endif
-}
-
-#else
-
-int main()
-{
-}
-
-#endif
diff --git a/libcxx/test/containers/unord/unord.multiset/db_local_iterators_1.pass.cpp b/libcxx/test/containers/unord/unord.multiset/db_local_iterators_1.pass.cpp
deleted file mode 100644
index 39e3c694b7d..00000000000
--- a/libcxx/test/containers/unord/unord.multiset/db_local_iterators_1.pass.cpp
+++ /dev/null
@@ -1,43 +0,0 @@
-//===----------------------------------------------------------------------===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is dual licensed under the MIT and the University of Illinois Open
-// Source Licenses. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-
-// <unordered_set>
-
-// Compare local_iterators from different containers with == or !=.
-
-#if _LIBCPP_DEBUG2 >= 1
-
-#define _LIBCPP_ASSERT(x, m) ((x) ? (void)0 : std::exit(0))
-
-#include <unordered_set>
-#include <cassert>
-
-int main()
-{
- {
- typedef int T;
- typedef std::unordered_multiset<T> C;
- C c1;
- c1.insert(1);
- C c2;
- c2.insert(1);
- C::local_iterator i = c1.begin(c1.bucket(1));
- C::local_iterator j = c2.begin(c2.bucket(1));
- assert(i != j);
- assert(false);
- }
-}
-
-#else
-
-int main()
-{
-}
-
-#endif
diff --git a/libcxx/test/containers/unord/unord.set/db_iterators_1.pass.cpp b/libcxx/test/containers/unord/unord.set/db_iterators_1.pass.cpp
deleted file mode 100644
index 2835c010830..00000000000
--- a/libcxx/test/containers/unord/unord.set/db_iterators_1.pass.cpp
+++ /dev/null
@@ -1,54 +0,0 @@
-//===----------------------------------------------------------------------===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is dual licensed under the MIT and the University of Illinois Open
-// Source Licenses. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-
-// <unordered_set>
-
-// Compare iterators from different containers with == or !=.
-
-#if _LIBCPP_DEBUG2 >= 1
-
-#define _LIBCPP_ASSERT(x, m) ((x) ? (void)0 : std::exit(0))
-
-#include <unordered_set>
-#include <cassert>
-#include <iterator>
-#include <exception>
-#include <cstdlib>
-
-#include "../../min_allocator.h"
-
-int main()
-{
- {
- typedef int T;
- typedef std::unordered_set<T> C;
- C c1;
- C c2;
- bool b = c1.begin() != c2.begin();
- assert(false);
- }
-#if __cplusplus >= 201103L
- {
- typedef int T;
- typedef std::unordered_set<T, min_allocator<T>> C;
- C c1;
- C c2;
- bool b = c1.begin() != c2.begin();
- assert(false);
- }
-#endif
-}
-
-#else
-
-int main()
-{
-}
-
-#endif
diff --git a/libcxx/test/containers/unord/unord.set/db_local_iterators_1.pass.cpp b/libcxx/test/containers/unord/unord.set/db_local_iterators_1.pass.cpp
deleted file mode 100644
index f432471eae6..00000000000
--- a/libcxx/test/containers/unord/unord.set/db_local_iterators_1.pass.cpp
+++ /dev/null
@@ -1,43 +0,0 @@
-//===----------------------------------------------------------------------===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is dual licensed under the MIT and the University of Illinois Open
-// Source Licenses. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-
-// <unordered_set>
-
-// Compare local_iterators from different containers with == or !=.
-
-#if _LIBCPP_DEBUG2 >= 1
-
-#define _LIBCPP_ASSERT(x, m) ((x) ? (void)0 : std::exit(0))
-
-#include <unordered_set>
-#include <cassert>
-
-int main()
-{
- {
- typedef int T;
- typedef std::unordered_set<T> C;
- C c1;
- c1.insert(1);
- C c2;
- c2.insert(1);
- C::local_iterator i = c1.begin(c1.bucket(1));
- C::local_iterator j = c2.begin(c2.bucket(1));
- assert(i != j);
- assert(false);
- }
-}
-
-#else
-
-int main()
-{
-}
-
-#endif
diff --git a/libcxx/test/re/re.alg/re.alg.match/awk.pass.cpp b/libcxx/test/re/re.alg/re.alg.match/awk.pass.cpp
index 50cc55c43df..d2065a033d3 100644
--- a/libcxx/test/re/re.alg/re.alg.match/awk.pass.cpp
+++ b/libcxx/test/re/re.alg/re.alg.match/awk.pass.cpp
@@ -24,7 +24,7 @@
int main()
{
- {
+/* {
std::cmatch m;
const char s[] = "a";
assert(std::regex_match(s, m, std::regex("a", std::regex_constants::awk)));
@@ -614,12 +614,12 @@ int main()
assert(m.size() == 0);
}
std::locale::global(std::locale("cs_CZ.ISO8859-2"));
- {
+*/ {
std::cmatch m;
const char s[] = "m";
- assert(std::regex_match(s, m, std::regex("[a[=M=]z]",
- std::regex_constants::awk)));
- assert(m.size() == 1);
+ /* assert(std::regex_match(s, m,*/ std::regex("[a[=M=]z]"/*,
+ std::regex_constants::awk*/);//));
+/* assert(m.size() == 1);
assert(!m.prefix().matched);
assert(m.prefix().first == s);
assert(m.prefix().second == m[0].first);
@@ -629,8 +629,8 @@ int main()
assert(m.length(0) == std::char_traits<char>::length(s));
assert(m.position(0) == 0);
assert(m.str(0) == s);
- }
- {
+*/ }
+/* {
std::cmatch m;
const char s[] = "Ch";
assert(std::regex_match(s, m, std::regex("[a[.ch.]z]",
@@ -1386,4 +1386,4 @@ int main()
assert(m.position(0) == 0);
assert(m.str(0) == s);
}
-}
+*/}
diff --git a/libcxx/www/debug_mode.html b/libcxx/www/debug_mode.html
index 6a773171a57..2c030f78b5c 100644
--- a/libcxx/www/debug_mode.html
+++ b/libcxx/www/debug_mode.html
@@ -41,7 +41,7 @@ record which parts of libc++ have debug mode support.
<code>&lt;unordered_set&gt;</code>
</p>
</td>
-<td> &#10003; </td>
+<td align="center"> &#10003; </td>
</tr>
<tr>
@@ -50,34 +50,34 @@ record which parts of libc++ have debug mode support.
<code>&lt;unordered_map&gt;</code>
</p>
</td>
-<td><!-- &#10003; --></td>
+<td align="center"><!-- &#10003; --></td>
</tr>
<tr>
<td>
<p>
-<code>&lt;set&gt;</code>
+<code>&lt;string&gt;</code>
</p>
</td>
-<td><!-- &#10003; --></td>
+<td align="center"><!-- &#10003; --></td>
</tr>
<tr>
<td>
<p>
-<code>&lt;map&gt;</code>
+<code>&lt;set&gt;</code>
</p>
</td>
-<td><!-- &#10003; --></td>
+<td align="center"><!-- &#10003; --></td>
</tr>
<tr>
<td>
<p>
-<code>&lt;string&gt;</code>
+<code>&lt;map&gt;</code>
</p>
</td>
-<td><!-- &#10003; --></td>
+<td align="center"><!-- &#10003; --></td>
</tr>
<tr>
@@ -86,7 +86,7 @@ record which parts of libc++ have debug mode support.
<code>vector&lt;bool&gt;</code>
</p>
</td>
-<td><!-- &#10003; --></td>
+<td align="center"><!-- &#10003; --></td>
</tr>
<tr>
@@ -95,7 +95,7 @@ record which parts of libc++ have debug mode support.
<code>&lt;deque&gt;</code>
</p>
</td>
-<td><!-- &#10003; --></td>
+<td align="center"><!-- &#10003; --></td>
</tr>
<tr>
@@ -104,7 +104,7 @@ record which parts of libc++ have debug mode support.
<code>&lt;forward_list&gt;</code>
</p>
</td>
-<td><!-- &#10003; --></td>
+<td align="center"><!-- &#10003; --></td>
</tr>
<tr>
@@ -113,7 +113,7 @@ record which parts of libc++ have debug mode support.
<code>&lt;array&gt;</code>
</p>
</td>
-<td><!-- &#10003; --></td>
+<td align="center"><!-- &#10003; --></td>
</tr>
<tr>
@@ -122,7 +122,7 @@ record which parts of libc++ have debug mode support.
<code>&lt;stack&gt;</code>
</p>
</td>
-<td><!-- &#10003; --></td>
+<td align="center"><!-- &#10003; --></td>
</tr>
<tr>
@@ -131,7 +131,7 @@ record which parts of libc++ have debug mode support.
<code>&lt;queue&gt;</code>
</p>
</td>
-<td><!-- &#10003; --></td>
+<td align="center"><!-- &#10003; --></td>
</tr>
<tr>
@@ -140,7 +140,7 @@ record which parts of libc++ have debug mode support.
<code>&lt;algorithm&gt;</code>
</p>
</td>
-<td><!-- &#10003; --></td>
+<td align="center"><!-- &#10003; --></td>
</tr>
OpenPOWER on IntegriCloud