[libcxx-commits] [PATCH] D149593: [libc++][ranges] Fixes as_rvalue's linkage.
Mark de Wever via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Tue May 2 08:55:30 PDT 2023
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rGd5442761f944: [libc++][ranges] Fixes as_rvalue's linkage. (authored by Mordante).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D149593/new/
https://reviews.llvm.org/D149593
Files:
libcxx/include/__ranges/as_rvalue_view.h
Index: libcxx/include/__ranges/as_rvalue_view.h
===================================================================
--- libcxx/include/__ranges/as_rvalue_view.h
+++ libcxx/include/__ranges/as_rvalue_view.h
@@ -125,7 +125,7 @@
} // namespace __as_rvalue
inline namespace __cpo {
-constexpr auto as_rvalue = __as_rvalue::__fn{};
+inline constexpr auto as_rvalue = __as_rvalue::__fn{};
} // namespace __cpo
} // namespace views
} // namespace ranges
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D149593.518760.patch
Type: text/x-patch
Size: 454 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20230502/2163260b/attachment.bin>
More information about the libcxx-commits
mailing list