Skip to content
Snippets Groups Projects
Commit bbf6d3a9 authored by Fedor Moiseev's avatar Fedor Moiseev Committed by David Gobbi
Browse files

build fix for static windows

parent 579f0aed
No related branches found
No related tags found
No related merge requests found
......@@ -62,7 +62,7 @@ public:
bool GetNestedParallelism() { return this->NestedActivated; }
//--------------------------------------------------------------------------------
bool IsParallelScope() { return this->IsParallel; }
bool IsParallelScope();
//--------------------------------------------------------------------------------
bool GetSingleThread();
......@@ -118,6 +118,12 @@ private:
std::atomic<bool> IsParallel{ false };
};
template <BackendType Backend>
bool vtkSMPToolsImpl<Backend>::IsParallelScope()
{
return this->IsParallel;
}
using ExecuteFunctorPtrType = void (*)(void*, vtkIdType, vtkIdType, vtkIdType);
VTK_ABI_NAMESPACE_END
......
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