-
Notifications
You must be signed in to change notification settings - Fork 94
improved simplecpp::TokenList constructors
#599
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3299,20 +3299,97 @@ static void preprocess_files() | |
| } | ||
| } | ||
|
|
||
| static void safe_api() | ||
| static void tokenlist_api() | ||
| { | ||
| // this test is to make sure the safe APIs are compiling | ||
| #if defined(__cpp_lib_string_view) || defined(__cpp_lib_span) | ||
| std::vector<std::string> filenames; | ||
| # if defined(__cpp_lib_string_view) | ||
| # if !defined(__cpp_lib_string_view) && !defined(__cpp_lib_span) | ||
| // sized array + size | ||
| { | ||
| char input[] = "code"; // NOLINT(misc-const-correctness) | ||
| simplecpp::TokenList(input,sizeof(input),filenames,""); | ||
| } | ||
| { | ||
| const char input[] = "code"; | ||
| simplecpp::TokenList(input,sizeof(input),filenames,""); | ||
| } | ||
| { | ||
| unsigned char input[] = "code"; // NOLINT(misc-const-correctness) | ||
| simplecpp::TokenList(input,sizeof(input),filenames,""); | ||
| } | ||
| { | ||
| const unsigned char input[] = "code"; | ||
| simplecpp::TokenList(input,sizeof(input),filenames,""); | ||
| } | ||
| #endif // !defined(__cpp_lib_string_view) && !defined(__cpp_lib_span) | ||
| // pointer via View | ||
| { | ||
| const char * const input = "code"; | ||
| simplecpp::TokenList({input},filenames,""); | ||
| } | ||
| // sized array via View | ||
| { | ||
| char input[] = "code"; // NOLINT(misc-const-correctness) | ||
| simplecpp::TokenList(simplecpp::View{input},filenames,""); | ||
| } | ||
| { | ||
| const char input[] = "code"; | ||
| simplecpp::TokenList(simplecpp::View{input},filenames,""); | ||
| } | ||
| // sized array + size via View/std::span | ||
| { | ||
| char input[] = "code"; // NOLINT(misc-const-correctness) | ||
|
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is not actually reported but pre-emptively added in case it is detected in the future. I added a comment about it upstream: llvm/llvm-project#56758 (comment) |
||
| simplecpp::TokenList({input,sizeof(input)},filenames,""); | ||
| } | ||
| { | ||
| const char input[] = "code"; | ||
| simplecpp::TokenList({input,sizeof(input)},filenames,""); | ||
| } | ||
| // sized array | ||
| { | ||
| char input[] = "code"; // NOLINT(misc-const-correctness) | ||
| simplecpp::TokenList(input,filenames,""); | ||
| } | ||
| { | ||
| const char input[] = "code"; | ||
| simplecpp::TokenList(input,filenames,""); | ||
| } | ||
| { | ||
| unsigned char input[] = "code"; // NOLINT(misc-const-correctness) | ||
| simplecpp::TokenList(input,filenames,""); | ||
| } | ||
| { | ||
| const unsigned char input[] = "code"; | ||
| simplecpp::TokenList(input,filenames,""); | ||
| } | ||
| // std::string via View/std::span (implicit) | ||
| { | ||
| std::string input = "code"; // NOLINT(misc-const-correctness) | ||
| simplecpp::TokenList(input,filenames,""); | ||
| } | ||
| { | ||
| const std::string input = "code"; | ||
| simplecpp::TokenList(input,filenames,""); | ||
| } | ||
| // std::string via View/std::span (explicit) | ||
| { | ||
| std::string input = "code"; // NOLINT(misc-const-correctness) | ||
| simplecpp::TokenList({input},filenames,""); | ||
| } | ||
| { | ||
| const std::string input = "code"; | ||
| simplecpp::TokenList({input},filenames,""); | ||
| } | ||
|
|
||
| // this test is to make sure the safe APIs are compiling | ||
| #ifdef __cpp_lib_string_view | ||
| { | ||
| const char input[] = "code"; | ||
| const std::string_view sv = input; | ||
| // std::string_view can be implicitly converted into a std::span | ||
| simplecpp::TokenList(sv,filenames,""); | ||
| } | ||
| # endif | ||
| # ifdef __cpp_lib_span | ||
| #endif // __cpp_lib_string_view | ||
| #ifdef __cpp_lib_span | ||
| { | ||
| char input[] = "code"; | ||
| const std::span sp = input; | ||
|
|
@@ -3333,8 +3410,7 @@ static void safe_api() | |
| const std::span sp = input; | ||
| simplecpp::TokenList(sp,filenames,""); | ||
| } | ||
| # endif | ||
| #endif | ||
| #endif // __cpp_lib_span | ||
| } | ||
|
|
||
| static void isAbsolutePath() { | ||
|
|
@@ -3660,7 +3736,7 @@ int main(int argc, char **argv) | |
|
|
||
| TEST_CASE(preprocess_files); | ||
|
|
||
| TEST_CASE(safe_api); | ||
| TEST_CASE(tokenlist_api); | ||
|
|
||
| TEST_CASE(isAbsolutePath); | ||
|
|
||
|
|
||
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.
Uh oh!
There was an error while loading. Please reload this page.