[libcxx-commits] [libcxx] [libc++][modules] Fixes naming inconsistency. (PR #83036)

Mark de Wever via libcxx-commits libcxx-commits at lists.llvm.org
Mon Feb 26 09:19:00 PST 2024


https://github.com/mordante created https://github.com/llvm/llvm-project/pull/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

>From 42046e3ebe2e009db664e3cd317463d41b2ea795 Mon Sep 17 00:00:00 2001
From: Mark de Wever <koraq at xs4all.nl>
Date: Mon, 26 Feb 2024 18:14:45 +0100
Subject: [PATCH] [libc++][modules] Fixes naming inconsistency.

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
---
 libcxx/modules/modules.json.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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