update supported cmake versions and add some tests with newer compilers (#972)

Update and test with some newer compilers and cmake versions

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
This commit is contained in:
Philip Top
2024-01-08 05:40:26 -08:00
committed by GitHub
parent 9dfeefe2ba
commit 35aa92d71a
41 changed files with 416 additions and 356 deletions

View File

@@ -44,7 +44,7 @@ int main(int argc, char **argv) {
// CLI11's built in enum streaming can be used outside CLI11 like this:
using CLI::enums::operator<<;
std::cout << "Enum received: " << level << std::endl;
std::cout << "Enum received: " << level << '\n';
return 0;
}