[libcxx-commits] [libcxx] b50bcc7 - [libc++][modules] Fixes naming inconsistency. (#83036)
via libcxx-commits
libcxx-commits at lists.llvm.org
Tue Feb 27 09:10:58 PST 2024
Author: Mark de Wever
Date: 2024-02-27T12:10:53-05:00
New Revision: b50bcc7ffb6ad6caa4c141a22915ab59f725b7ae
URL: https://github.com/llvm/llvm-project/commit/b50bcc7ffb6ad6caa4c141a22915ab59f725b7ae
DIFF: https://github.com/llvm/llvm-project/commit/b50bcc7ffb6ad6caa4c141a22915ab59f725b7ae.diff
LOG: [libc++][modules] Fixes naming inconsistency. (#83036)
The modules used is-standard-library and is-std-library. The latter is
the name used in the SG15 proposal,
Fixes: https://github.com/llvm/llvm-project/issues/82879
Added:
Modified:
libcxx/modules/modules.json.in
Removed:
################################################################################
diff --git a/libcxx/modules/modules.json.in b/libcxx/modules/modules.json.in
index ddc377f28f9194..759ac92d81f18e 100644
--- a/libcxx/modules/modules.json.in
+++ b/libcxx/modules/modules.json.in
@@ -5,7 +5,7 @@
{
"logical-name": "std",
"source-path": "@LIBCXX_MODULE_RELATIVE_PATH@/std.cppm",
- "is-standard-library": true,
+ "is-std-library": true,
"local-arguments": {
"system-include-directories": [
"@LIBCXX_MODULE_RELATIVE_PATH@"
More information about the libcxx-commits
mailing list