summaryrefslogtreecommitdiff
path: root/indra/cmake
diff options
context:
space:
mode:
authorcallum_linden <none@none>2014-10-20 14:00:39 -0700
committercallum_linden <none@none>2014-10-20 14:00:39 -0700
commit577a3973ea1bc268b14ba3101474fb0b9a9bade1 (patch)
tree4bbe95bf73cf7fac29683fc0f00eec2b15f701d0 /indra/cmake
parentc853b470db48d9bdda0a336068c4bbbe2ab2761f (diff)
Update to build on Xcode 6.0: Large (and final) collection of fixes for unused variables, unused const-variables, unused member variables & functions etc. Also removed flags from CMake
Diffstat (limited to 'indra/cmake')
-rwxr-xr-xindra/cmake/00-Common.cmake4
1 files changed, 1 insertions, 3 deletions
diff --git a/indra/cmake/00-Common.cmake b/indra/cmake/00-Common.cmake
index 39e318fa6b..627dcdc3b2 100755
--- a/indra/cmake/00-Common.cmake
+++ b/indra/cmake/00-Common.cmake
@@ -212,9 +212,7 @@ if (LINUX OR DARWIN)
if (CMAKE_COMPILER_IS_GNUCXX)
set(GCC_WARNINGS "-Wall -Wno-sign-compare -Wno-trigraphs")
elseif (CMAKE_COMPILER_IS_CLANGXX)
- # These unused warnings really ought to be cleaned up over time
- # set(UNUSED_WARNINGS "-Wno-overloaded-virtual")
- set(GCC_WARNINGS "-Wall -Wno-sign-compare -Wno-trigraphs ${UNUSED_WARNINGS}")
+ set(GCC_WARNINGS "-Wall -Wno-sign-compare -Wno-trigraphs")
endif()
if (NOT GCC_DISABLE_FATAL_WARNINGS)