Browse Source

Remove extra MSVC warning C4141 from Clang build.

pull/592/merge
Joao Matos 10 years ago
parent
commit
4db8aa4af7
  1. 3
      src/CppParser/premake4.lua

3
src/CppParser/premake4.lua

@ -2,7 +2,8 @@ clang_msvc_flags =
{ {
"/wd4146", "/wd4244", "/wd4800", "/wd4345", "/wd4146", "/wd4244", "/wd4800", "/wd4345",
"/wd4355", "/wd4996", "/wd4624", "/wd4291", "/wd4355", "/wd4996", "/wd4624", "/wd4291",
"/wd4251" "/wd4251",
"/wd4141", -- 'inline' : used more than once
} }
if not (string.starts(action, "vs") and not os.is_windows()) then if not (string.starts(action, "vs") and not os.is_windows()) then

Loading…
Cancel
Save