Skip to content
Snippets Groups Projects
Commit ecfc9170 authored by Julien Malik's avatar Julien Malik
Browse files

COMP: use ITK_THREAD_RETURN_VALUE to return values from Thread function

parent e6fb07ce
No related branches found
No related tags found
No related merge requests found
......@@ -92,7 +92,7 @@ CoordinateToName::ThreadFunction(void *arg)
struct itk::MultiThreader::ThreadInfoStruct * pInfo = (itk::MultiThreader::ThreadInfoStruct *) (arg);
CoordinateToName::Pointer lThis = (CoordinateToName*) (pInfo->UserData);
lThis->DoEvaluate();
return 0;
return ITK_THREAD_RETURN_VALUE;
}
void CoordinateToName::DoEvaluate()
......
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