1
0
Fork 0

Removed the new old-style-cast warning from error treatment

This is a new warning included in clang that ships with OS X 10.10 Yosemite.
This commit is contained in:
archshift 2014-07-26 03:34:23 -07:00
parent a39e19e94a
commit 443112d70e
1 changed files with 1 additions and 1 deletions

View File

@ -228,7 +228,7 @@ macro(set_exe_flags)
add_flags_cxx("-Wno-error=sign-conversion -Wno-error=conversion -Wno-padded")
add_flags_cxx("-Wno-error=deprecated -Wno-error=weak-vtables -Wno-error=float-equal")
add_flags_cxx("-Wno-error=missing-prototypes -Wno-error=non-virtual-dtor")
add_flags_cxx("-Wno-error=covered-switch-default -Wno-error=shadow")
add_flags_cxx("-Wno-error=covered-switch-default -Wno-error=shadow -Wno-error=old-style-cast")
add_flags_cxx("-Wno-error=exit-time-destructors -Wno-error=missing-variable-declarations")
add_flags_cxx("-Wno-error=global-constructors -Wno-implicit-fallthrough")
add_flags_cxx("-Wno-error=extra-semi -Wno-weak-vtables -Wno-switch-enum")