diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2022-09-20 14:27:11 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2022-09-20 14:27:11 -0400 |
commit | a441ce184fef3b30daff2b3eeef9db650b748ac9 (patch) | |
tree | a400595c5dcdd9d56964184db2e7fb620a815f36 /indra/cmake | |
parent | 3c6e2a6e4c061add79b7a8eae96a6271148d278b (diff) |
DRTVWR-568: Stop suppressing unused variable warnings -- we fixed?!
Diffstat (limited to 'indra/cmake')
-rw-r--r-- | indra/cmake/00-Common.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/cmake/00-Common.cmake b/indra/cmake/00-Common.cmake index f1348dbad5..c848d00710 100644 --- a/indra/cmake/00-Common.cmake +++ b/indra/cmake/00-Common.cmake @@ -180,7 +180,7 @@ if (LINUX OR DARWIN) list(APPEND GCC_WARNINGS -Werror) endif (NOT GCC_DISABLE_FATAL_WARNINGS) - list(APPEND GCC_WARNINGS -Wno-reorder -Wno-non-virtual-dtor -Wno-unused-variable ) + list(APPEND GCC_WARNINGS -Wno-reorder -Wno-non-virtual-dtor ) add_compile_options(${GCC_WARNINGS}) add_compile_options(-m${ADDRESS_SIZE}) |