[libcxx-commits] [libcxx] a518425 - [NFC][libc++] Removes uneeded std:: prefixes.
Mark de Wever via libcxx-commits
libcxx-commits at lists.llvm.org
Sun Jan 15 04:30:03 PST 2023
Author: Mark de Wever
Date: 2023-01-15T13:29:57+01:00
New Revision: a518425ddc2ae6c627cd3d99b085063c9a791f34
URL: https://github.com/llvm/llvm-project/commit/a518425ddc2ae6c627cd3d99b085063c9a791f34
DIFF: https://github.com/llvm/llvm-project/commit/a518425ddc2ae6c627cd3d99b085063c9a791f34.diff
LOG: [NFC][libc++] Removes uneeded std:: prefixes.
Reviewed By: #libc, philnik
Differential Revision: https://reviews.llvm.org/D141766
Added:
Modified:
libcxx/include/vector
Removed:
################################################################################
diff --git a/libcxx/include/vector b/libcxx/include/vector
index bbf92145aa10d..e9d1b72171e7f 100644
--- a/libcxx/include/vector
+++ b/libcxx/include/vector
@@ -3304,10 +3304,10 @@ erase_if(vector<_Tp, _Allocator>& __c, _Predicate __pred) {
}
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
More information about the libcxx-commits
mailing list