[libcxx-commits] [PATCH] D102354: [libcxx] NFC. Fix misprint unodered -> unordered

Kristina Bessonova via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Thu May 13 00:58:31 PDT 2021


This revision was not accepted when it landed; it landed in state "Needs Review".
This revision was automatically updated to reflect the committed changes.
Closed by commit rG8a86787847d9: [libcxx] NFC. Fix misprint unodered -> unordered (authored by krisb).

Changed prior to commit:
  https://reviews.llvm.org/D102354?vs=344915&id=345065#toc

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D102354/new/

https://reviews.llvm.org/D102354

Files:
  libcxx/include/__hash_table


Index: libcxx/include/__hash_table
===================================================================
--- libcxx/include/__hash_table
+++ libcxx/include/__hash_table
@@ -2506,11 +2506,11 @@
 {
 #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)
     {


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D102354.345065.patch
Type: text/x-patch
Size: 986 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20210513/111d64f5/attachment.bin>


More information about the libcxx-commits mailing list