[libcxx-commits] [libcxx] [libc++][format][3/3] Improves formatting performance. (PR #108990)
Nikolas Klauser via libcxx-commits
libcxx-commits at lists.llvm.org
Mon Oct 7 09:03:56 PDT 2024
================
@@ -53,24 +56,147 @@ _LIBCPP_BEGIN_NAMESPACE_STD
namespace __format {
+// A helper to limit the total size of code units written.
+class _LIBCPP_HIDE_FROM_ABI __max_output_size {
----------------
philnik777 wrote:
Why is this marked `_LIBCPP_HIDE_FROM_ABI`? Classes should never be marked as such AFAIK.
https://github.com/llvm/llvm-project/pull/108990
More information about the libcxx-commits
mailing list