[libcxx-commits] [libcxx] Implement P1885R12: `<text_encoding>` header (PR #141312)

Hristo Hristov via libcxx-commits libcxx-commits at lists.llvm.org
Sat May 24 12:22:17 PDT 2025


================
@@ -0,0 +1,1173 @@
+//===----------------------------------------------------------------------===//
+//
+// 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
+//
+//===----------------------------------------------------------------------===//
+
+#ifndef SUPPORT_TEST_TEXT_ENCODING_H
+#define SUPPORT_TEST_TEXT_ENCODING_H
+
+#include "test_macros.h"
+#include <cstdint>
+
----------------
Zingam wrote:

```suggestion
#include <cstdint>

#include "test_macros.h"
```

Do you really need this header in the support directory? Perhaps it can be put in the test directory?

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


More information about the libcxx-commits mailing list