[libcxx-commits] [libcxx] [libc++] Implements Runtime format strings. (PR #73353)

Louis Dionne via libcxx-commits libcxx-commits at lists.llvm.org
Tue Dec 5 09:02:07 PST 2023


================
@@ -0,0 +1,19 @@
+//===----------------------------------------------------------------------===//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+
+// UNSUPPORTED: c++03, c++11, c++14, c++17
+
+// <format>
+
+// template<class... Args>
+//   format-arg-store<format_context, Args...>
+//   make_format_args(const Args&... args);
----------------
ldionne wrote:

```suggestion
//   make_format_args(Args&... args);
```

https://github.com/llvm/llvm-project/pull/73353


More information about the libcxx-commits mailing list