1
0
mirror of https://github.com/CLIUtils/CLI11.git synced 2025-04-30 04:33:53 +00:00

Fixing CUDA NVCC 7.0

This commit is contained in:
Henry Schreiner 2018-04-19 04:58:15 -04:00
parent 2d6581a394
commit 12858075f7
3 changed files with 5 additions and 5 deletions

View File

@ -1,5 +1,5 @@
### Version 1.5.3: Compiler compatibility
This version fixes older AppleClang compilers by removing the optimization for casting. The minimum version of Boost Optional supported has been clarified to be 1.58.
This version fixes older AppleClang compilers by removing the optimization for casting. The minimum version of Boost Optional supported has been clarified to be 1.58. CUDA 7.0 NVCC is now supported.
### Version 1.5.2: LICENSE in single header mode

View File

@ -25,9 +25,9 @@ You can be notified when new releases are made by subscribing to https://github.
An acceptable CLI parser library should be all of the following:
* Easy to include (i.e., header only, one file if possible, **no external requirements**): While many programs depend on Boost, that should not be a requirement if all you want is CLI parsing.
* Short Syntax: This is one of the main points of a CLI parser, it should make variables from the command line nearly as easy to define as any other variables. If most of your program is hidden in CLI parsing, this is a problem for readability.
* C++11 or better: Should work with GCC 4.7+ (such as GCC 4.8 on CentOS 7) or above, or Clang 3.5+, or MSVC 2015+. (Note: for CLI11, Clang 3.4 only fails because of tests, GoogleMock does not support it.)
* Easy to include (i.e., header only, one file if possible, **no external requirements**).
* Short, simple syntax: This is one of the main reasons to use a CLI parser, it should make variables from the command line nearly as easy to define as any other variables. If most of your program is hidden in CLI parsing, this is a problem for readability.
* C++11 or better: Should work with GCC 4.7+ (such as GCC 4.8 on CentOS 7), Clang 3.5+, AppleClang 7+, NVCC 7.0+, or MSVC 2015+.
* Work on Linux, macOS, and Windows.
* Well tested using [Travis] (Linux and macOS) and [AppVeyor] (Windows). "Well" is defined as having good coverage measured by [CodeCov].
* Clear help printing.

View File

@ -34,7 +34,7 @@ template <typename CRTP> class OptionBase {
protected:
/// The group membership
std::string group_{"Options"};
std::string group_ = std::string("Options");
/// True if this is a required option
bool required_{false};