Skip to content

Commit e74d18f

Browse files
committed
Add comment regarding default argument value to scm-to-cereal
1 parent e5ada42 commit e74d18f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/scm-to-cereal.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ int main(int argc, char* argv[])
6666
isomapfile = result["isomap"].as<std::string>();
6767
}
6868
save_shape_only = result["shape-only"].as<bool>(); // optional
69-
outputfile = result["output"].as<std::string>(); // required
69+
outputfile = result["output"].as<std::string>(); // required (with default)
7070
} catch (const std::exception& e)
7171
{
7272
std::cout << "Error while parsing command-line arguments: " << e.what() << std::endl;

0 commit comments

Comments
 (0)