KhronosGroup / OpenCOLLADA

652 stars 251 forks source link

_NOEXCEPT unrecognized identifier #609

Open armedturret opened 5 years ago

armedturret commented 5 years ago

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 commented 5 years ago

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