Skip to content

Commit

Permalink
Fix TCLAP::SpecificationException with tclap 1.4.
Browse files Browse the repository at this point in the history
-a <NAME>,  --first_data_array <NAME> -- Required arguments are not allowed in an exclusive grouping.
  • Loading branch information
bilke authored and endJunction committed Jan 3, 2025
1 parent 47febc9 commit b51ea4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vtkdiff.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ auto parseCommandLine(int argc, char* argv[]) -> Args
cmd.add(vtk_input_b_arg);

TCLAP::ValueArg<std::string> data_array_a_arg(
"a", "first_data_array", "First data array name for comparison", true,
"a", "first_data_array", "First data array name for comparison", false,
"", "NAME");

TCLAP::ValueArg<std::string> data_array_b_arg(
Expand Down

0 comments on commit b51ea4b

Please sign in to comment.