[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:06 PST 2023
================
@@ -0,0 +1,20 @@
+//===----------------------------------------------------------------------===//
+// 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
+// UNSUPPORTED: no-wide-characters
+
+// <format>
+
+// template<class... Args>
+// format-arg-store<wformat_context, Args...>
+// make_wformat_args(const Args&... args);
----------------
ldionne wrote:
```suggestion
// make_wformat_args(Args&... args);
```
https://github.com/llvm/llvm-project/pull/73353
More information about the libcxx-commits
mailing list