Skip to content
Snippets Groups Projects
Commit b7fbd679 authored by Ben Boeckel's avatar Ben Boeckel
Browse files

TestPDALReader: fix test function signature

Windows has a difference in mangling between `char**` and `char*[]`.
parent fea90b24
No related branches found
No related tags found
No related merge requests found
......@@ -34,7 +34,7 @@
int TestPDALReader_@VTK_PDAL_READER_POSTFIX@(int argc, char **argv)
int TestPDALReader_@VTK_PDAL_READER_POSTFIX@(int argc, char *argv[])
{
const char* fileName = "Data/@VTK_PDAL_READER_TEST_INPUT@";
const char* path = vtkTestUtilities::ExpandDataFileName(argc, argv, fileName);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment