Skip to content

Commit

Permalink
Changed "and" to "&&" for non compliant compilers (MSVC).
Browse files Browse the repository at this point in the history
  • Loading branch information
SkyToGround committed Dec 20, 2017
1 parent 97b1def commit 44b4801
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/CLI/App.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 44b4801

Please sign in to comment.