Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 104
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
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| 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) | ||
| ||
| 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); | ||
Uh oh!
There was an error while loading. Please reload this page.