You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I used cmake 3.11.1 to generate both Xcode and Unix makefiles. I get the same errors (same clang compiler, I assume).
Here are the errors.
/Users/Shared/Code/github/accidental-noise-library/Framework/../Imaging/imaging.inl:1112:27: error: no matching
constructor for initialization of 'std::thread'
threads.push_back(std::thread(mapRGBA2DChunk, chunk));
^ ~~~~~~~~~~~~~~~~~~~~~
/Users/Shared/Code/github/accidental-noise-library/Framework/../Imaging/imaging.inl:1158:27: error: no matching
constructor for initialization of 'std::thread'
threads.push_back(std::thread(mapRGBA2DChunkNoZ, chunk));
^ ~~~~~~~~~~~~~~~~~~~~~~~~
/Users/Shared/Code/github/accidental-noise-library/Framework/../Processing/erosion.inl:27:9: error: non-aggregate type
'SDrop' cannot be initialized with an initializer list
{-1,-1},
^~~~~~~
/Users/Shared/Code/github/accidental-noise-library/Framework/../Processing/erosion.inl:28:9: error: non-aggregate type
'SDrop' cannot be initialized with an initializer list
{0,-1},
^~~~~~
/Users/Shared/Code/github/accidental-noise-library/Framework/../Processing/erosion.inl:29:9: error: non-aggregate type
'SDrop' cannot be initialized with an initializer list
{1,-1},
^~~~~~
/Users/Shared/Code/github/accidental-noise-library/Framework/../Processing/erosion.inl:30:9: error: non-aggregate type
'SDrop' cannot be initialized with an initializer list
{-1,0},
^~~~~~
/Users/Shared/Code/github/accidental-noise-library/Framework/../Processing/erosion.inl:31:9: error: non-aggregate type
'SDrop' cannot be initialized with an initializer list
{1,0},
^~~~~
/Users/Shared/Code/github/accidental-noise-library/Framework/../Processing/erosion.inl:32:9: error: non-aggregate type
'SDrop' cannot be initialized with an initializer list
{-1,1},
^~~~~~
/Users/Shared/Code/github/accidental-noise-library/Framework/../Processing/erosion.inl:33:9: error: non-aggregate type
'SDrop' cannot be initialized with an initializer list
{0,1},
^~~~~
/Users/Shared/Code/github/accidental-noise-library/Framework/../Processing/erosion.inl:34:9: error: non-aggregate type
'SDrop' cannot be initialized with an initializer list
{1,1}
^~~~~
/Users/Shared/Code/github/accidental-noise-library/Framework/../Expression/expressionbuilder.inl:11:18: error: no member
named 'emplace' in 'std::__1::map<std::__1::basic_string<char>, anl::CInstructionIndex,
std::__1::less<std::__1::basic_string<char> >, std::__1::allocator<std::__1::pair<const
std::__1::basic_string<char>, anl::CInstructionIndex> > >'
return c.emplace(k, std::forward<V>(v));
~ ^
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1/memory:1529:36: error:
calling a private constructor of class 'std::__1::thread'
::new ((void*)__p) _Tp(__a0);
^
The text was updated successfully, but these errors were encountered:
I used cmake 3.11.1 to generate both Xcode and Unix makefiles. I get the same errors (same clang compiler, I assume).
Here are the errors.
The text was updated successfully, but these errors were encountered: