1
0
mirror of https://github.com/CLIUtils/CLI11.git synced 2025-05-02 13:43:52 +00:00

Changed "and" to "&&" for non compliant compilers (MSVC).

This commit is contained in:
Jonas Nilsson 2017-12-20 11:45:53 +01:00 committed by GitHub
parent 97b1def525
commit 44b4801f6b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -842,7 +842,7 @@ class App {
}
if (value.size() != 0) {
if (write_description and opt->description_.size() != 0) {
if (write_description && opt->description_.size() != 0) {
if (out.tellp() != 0) {
out << std::endl;
}