Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ggutierrez-sunbright committed Feb 11, 2024
1 parent 538c021 commit e94f0dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/RbtArgParser.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class RbtArgParser {

// convenience functions to improve readability when adding options
// add a boolean flag to the options
inline void add_flag(const std::string &opts, const std::string &dest, const char *default_value = "false"){
inline void add_flag(const std::string &opts, const std::string &dest, const char *default_value = "false") {
add<bool>(opts, dest, default_value);
}

Expand Down

0 comments on commit e94f0dd

Please sign in to comment.