[libcxx-commits] [PATCH] D141766: [NFC][libc++] Removes uneeded std:: prefixes.
Mark de Wever via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Sat Jan 14 07:57:20 PST 2023
Mordante updated this revision to Diff 489257.
Mordante added a comment.
Restart CI.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D141766/new/
https://reviews.llvm.org/D141766
Files:
libcxx/include/vector
Index: libcxx/include/vector
===================================================================
--- libcxx/include/vector
+++ libcxx/include/vector
@@ -3304,10 +3304,10 @@
}
template <>
-inline constexpr bool __format::__enable_insertable<std::vector<char>> = true;
+inline constexpr bool __format::__enable_insertable<vector<char>> = true;
#ifndef _LIBCPP_HAS_NO_WIDE_CHARACTERS
template <>
-inline constexpr bool __format::__enable_insertable<std::vector<wchar_t>> = true;
+inline constexpr bool __format::__enable_insertable<vector<wchar_t>> = true;
#endif
#endif // _LIBCPP_STD_VER > 17
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D141766.489257.patch
Type: text/x-patch
Size: 602 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20230114/42de1b71/attachment.bin>
More information about the libcxx-commits
mailing list