Disable msvc warning C4866: compiler may not enforce left-to-right evaluation

order for call to 'C++17 operator'.

--HG--
branch : develop
merge-requests/1/merge
Roman Telezhynskyi 2020-01-14 19:13:16 +02:00
parent 5b41643d2d
commit 3c7cb2c9ac
1 changed files with 2 additions and 1 deletions

View File

@ -908,5 +908,6 @@ MSVC_DEBUG_CXXFLAGS += \
-wd4371 \
-wd4718 \
-wd4946 \
-wd4868 # compiler may not enforce left-to-right evaluation order in braced initializer list
-wd4868 \ # compiler may not enforce left-to-right evaluation order in braced initializer list
-wd4866 # compiler may not enforce left-to-right evaluation order for call to 'C++17 operator'
}