[libcxx-commits] [PATCH] D155185: [libc++] Work around #40363 for stringbuf::str()

Hans Wennborg via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Thu Jul 13 05:16:01 PDT 2023


hans added inline comments.


================
Comment at: libcxx/include/sstream:359
+      requires __is_allocator<_SAlloc>::value
+    _LIBCPP_HIDE_FROM_ABI basic_string<char_type, traits_type, _SAlloc> str(const _SAlloc& __sa) const {
+        return basic_string<_CharT, _Traits, _SAlloc>(view(), __sa);
----------------
Moving this one seems unrelated?


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D155185



More information about the libcxx-commits mailing list