Skip to content

Commit

Permalink
COMP: Fix test method signature in FEM module
Browse files Browse the repository at this point in the history
Fix test method signature in `FEM` module: replacing `char ** argv` with
`char * argv[]`.

Increase consitency with the ITK SW Guidelines.

Follow-up to several commits, e.g. 490f00d, 7b5d438, 39b3c62, 18e272c,
and 9ffaab4.
  • Loading branch information
jhlegarreta committed Jan 23, 2024
1 parent 00e059e commit 26f7fbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Modules/Numerics/FEM/test/itkFEMFactoryTest.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
#include "itkTestingMacros.h"

int
main(int argc, char ** argv)
main(int argc, char * argv[])
{
if (argc != 2)
{
Expand Down

0 comments on commit 26f7fbb

Please sign in to comment.