Skip to content

Commit

Permalink
Add comment regarding default argument value to scm-to-cereal
Browse files Browse the repository at this point in the history
  • Loading branch information
patrikhuber committed Dec 15, 2024
1 parent e5ada42 commit e74d18f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/scm-to-cereal.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ int main(int argc, char* argv[])
isomapfile = result["isomap"].as<std::string>();
}
save_shape_only = result["shape-only"].as<bool>(); // optional
outputfile = result["output"].as<std::string>(); // required
outputfile = result["output"].as<std::string>(); // required (with default)
} catch (const std::exception& e)
{
std::cout << "Error while parsing command-line arguments: " << e.what() << std::endl;
Expand Down

0 comments on commit e74d18f

Please sign in to comment.