Skip to content

Commit

Permalink
add default value
Browse files Browse the repository at this point in the history
  • Loading branch information
mahmudhera committed Nov 7, 2024
1 parent d31c45f commit 398538e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/cpp/compute_similarity.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ void parse_arguments(int argc, char *argv[], Arguments &arguments) {
// argument: combined output filename
parser.add_argument("-o", "--output")
.help("output filename (where the combined output will be written. Not used if -C is not present)")
.default_value("combined_output.txt")
.store_into(arguments.combined_output_filename);

parser.parse_args(argc, argv);
Expand Down

0 comments on commit 398538e

Please sign in to comment.