OpenCOLLADA icon indicating copy to clipboard operation
OpenCOLLADA copied to clipboard

_NOEXCEPT unrecognized identifier

Open armedturret opened this issue 7 years ago • 1 comments

When building on Windows 10 in Visual Studio 2017 I get the following error: DAEValidator\library\src\ArgumentParser.cpp(49): error C3646: '_NOEXCEPT': unknown override specifier This is seemingly caused by this section of code assigning the incorrect macro value.

#ifndef _MSC_VER
#define NOEXCEPT noexcept
#else
#define NOEXCEPT
#endif

armedturret avatar Dec 22 '18 19:12 armedturret

I was able to resolve the issue in my pull request. #610

armedturret avatar Dec 22 '18 22:12 armedturret