[libcxx-commits] [libcxx] 8a86787 - [libcxx] NFC. Fix misprint unodered -> unordered
Kristina Bessonova via libcxx-commits
libcxx-commits at lists.llvm.org
Thu May 13 00:58:33 PDT 2021
Author: Kristina Bessonova
Date: 2021-05-13T09:57:29+02:00
New Revision: 8a86787847d92c0b428171d9de748c1cf91b3159
URL: https://github.com/llvm/llvm-project/commit/8a86787847d92c0b428171d9de748c1cf91b3159
DIFF: https://github.com/llvm/llvm-project/commit/8a86787847d92c0b428171d9de748c1cf91b3159.diff
LOG: [libcxx] NFC. Fix misprint unodered -> unordered
Differential Revision: https://reviews.llvm.org/D102354
Added:
Modified:
libcxx/include/__hash_table
Removed:
################################################################################
diff --git a/libcxx/include/__hash_table b/libcxx/include/__hash_table
index c885ee0190a7a..08abe3920c689 100644
--- a/libcxx/include/__hash_table
+++ b/libcxx/include/__hash_table
@@ -2506,11 +2506,11 @@ __hash_table<_Tp, _Hash, _Equal, _Alloc>::erase(const_iterator __first,
{
#if _LIBCPP_DEBUG_LEVEL == 2
_LIBCPP_ASSERT(__get_const_db()->__find_c_from_i(&__first) == this,
- "unodered container::erase(iterator, iterator) called with an iterator not"
- " referring to this unodered container");
+ "unordered container::erase(iterator, iterator) called with an iterator not"
+ " referring to this container");
_LIBCPP_ASSERT(__get_const_db()->__find_c_from_i(&__last) == this,
- "unodered container::erase(iterator, iterator) called with an iterator not"
- " referring to this unodered container");
+ "unordered container::erase(iterator, iterator) called with an iterator not"
+ " referring to this container");
#endif
for (const_iterator __p = __first; __first != __last; __p = __first)
{
More information about the libcxx-commits
mailing list