Skip to content

Commit

Permalink
BUG: Fix pointer to function returning unsigned int.
Browse files Browse the repository at this point in the history
  • Loading branch information
Leengit authored and hjmjohnson committed Jan 26, 2022
1 parent a812aa3 commit b886472
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Modules/Core/Common/include/itkThreadSupport.h
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ using ITK_THREAD_RETURN_FUNCTION_CALL_CONVENTION = itk::ITK_THREAD_RETURN_TYPE;
constexpr std::size_t ITK_MAX_THREADS = ITK_DEFAULT_MAX_THREADS;
using MutexType = HANDLE;
using FastMutexType = CRITICAL_SECTION;
using ThreadFunctionType = (unsigned int)(__stdcall *)(void *);
using ThreadFunctionType = unsigned int(__stdcall *)(void *);
using ThreadProcessIdType = HANDLE;
static const ThreadProcessIdType ITK_DEFAULT_THREAD_ID = INVALID_HANDLE_VALUE;
using ITK_THREAD_RETURN_TYPE = unsigned int;
Expand Down

0 comments on commit b886472

Please sign in to comment.