[libcxx-commits] [libcxx] [libc++][modules] Fixes naming inconsistency. (PR #83036)
via libcxx-commits
libcxx-commits at lists.llvm.org
Mon Feb 26 09:19:31 PST 2024
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-libcxx
Author: Mark de Wever (mordante)
<details>
<summary>Changes</summary>
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
---
Full diff: https://github.com/llvm/llvm-project/pull/83036.diff
1 Files Affected:
- (modified) libcxx/modules/modules.json.in (+1-1)
``````````diff
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@"
``````````
</details>
https://github.com/llvm/llvm-project/pull/83036
More information about the libcxx-commits
mailing list