summaryrefslogtreecommitdiffstats
path: root/src/Configuration.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2017-12-25 15:26:48 -0500
committerDavid Robillard <d@drobilla.net>2017-12-25 16:26:13 -0500
commit15b3b0e9f8823752f80c7e597a70749813e61c79 (patch)
tree3f324c6e2a455be8b929456dadbf06520889d435 /src/Configuration.cpp
parentd6a9571641bcb34acb3521feb08eea33195fd9ca (diff)
downloadingen-15b3b0e9f8823752f80c7e597a70749813e61c79.tar.gz
ingen-15b3b0e9f8823752f80c7e597a70749813e61c79.tar.bz2
ingen-15b3b0e9f8823752f80c7e597a70749813e61c79.zip
Always use braces
Diffstat (limited to 'src/Configuration.cpp')
-rw-r--r--src/Configuration.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Configuration.cpp b/src/Configuration.cpp
index 30b536bf..3e7b13ba 100644
--- a/src/Configuration.cpp
+++ b/src/Configuration.cpp
@@ -120,10 +120,11 @@ Configuration::print_usage(const std::string& program, std::ostream& os)
for (const auto& o : _options) {
const Option& option = o.second;
os << " ";
- if (option.letter != '\0')
+ if (option.letter != '\0') {
os << "-" << option.letter << ", ";
- else
+ } else {
os << " ";
+ }
os.width(_max_name_length + 11);
os << std::left;
os << (std::string("--") + o.first + variable_string(option.type));