Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DAEValidator/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ if (WIN32)
# C4710: 'function' : function not inlined
# C4711: function 'function' selected for inline expansion
# C4820: 'bytes' bytes padding added after construct 'member_name'
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /MP /Wall /WX /wd4505 /wd4514 /wd4592 /wd4710 /wd4711 /wd4820")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /MP /Wall /wd4505 /wd4514 /wd4592 /wd4710 /wd4711 /wd4820")
else ()
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -Wall -Werror")
endif ()
Expand Down
6 changes: 3 additions & 3 deletions DAEValidator/library/src/ArgumentParser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@

using namespace std;

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

namespace opencollada
Expand Down