We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
It might be helpful to have version information defined in the header, e.g., cxxopts has something like this:
#define CXXOPTS__VERSION_MAJOR 3 #define CXXOPTS__VERSION_MINOR 1 #define CXXOPTS__VERSION_PATCH 1 namespace cxxopts { static constexpr struct { uint8_t major, minor, patch; } version = { CXXOPTS__VERSION_MAJOR, CXXOPTS__VERSION_MINOR, CXXOPTS__VERSION_PATCH }; } // namespace cxxopts
The text was updated successfully, but these errors were encountered:
mjansson
No branches or pull requests
It might be helpful to have version information defined in the header, e.g., cxxopts has something like this:
The text was updated successfully, but these errors were encountered: