[libc++][modules] Fixes naming inconsistency.#83036
Merged
ldionne merged 1 commit intoFeb 27, 2024
Merged
Conversation
The modules used is-standard-library and is-std-library. The latter is the name used in the SG15 proposal, Fixes: llvm#82879
Member
|
@llvm/pr-subscribers-libcxx Author: Mark de Wever (mordante) ChangesThe modules used is-standard-library and is-std-library. The latter is the name used in the SG15 proposal, Fixes: #82879 Full diff: https://github.com/llvm/llvm-project/pull/83036.diff 1 Files Affected:
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@"
|
mathstuf
approved these changes
Feb 26, 2024
ldionne
approved these changes
Feb 27, 2024
Member
|
/cherry-pick b50bcc7 |
llvmbot
pushed a commit
to llvmbot/llvm-project
that referenced
this pull request
Feb 27, 2024
The modules used is-standard-library and is-std-library. The latter is the name used in the SG15 proposal, Fixes: llvm#82879 (cherry picked from commit b50bcc7)
Member
|
/pull-request #83156 |
llvmbot
pushed a commit
to llvmbot/llvm-project
that referenced
this pull request
Mar 11, 2024
The modules used is-standard-library and is-std-library. The latter is the name used in the SG15 proposal, Fixes: llvm#82879 (cherry picked from commit b50bcc7)
Closed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The modules used is-standard-library and is-std-library. The latter is the name used in the SG15 proposal,
Fixes: #82879