https://git.reactos.org/?p=reactos.git;a=commitdiff;h=58b615f6685224e78f9dd85cc1e165302fa5e823

commit 58b615f6685224e78f9dd85cc1e165302fa5e823
Author:     Timo Kreuzer <[email protected]>
AuthorDate: Sun Apr 28 22:17:19 2019 +0200
Commit:     Timo Kreuzer <[email protected]>
CommitDate: Sat Jul 20 13:56:18 2019 +0200

    [CMAKE] Disable some overly sensitive warnings
    
    -Wno-unused-const-variable
    -Wno-unused-local-typedefs
    -Wno-deprecated
---
 sdk/cmake/gcc.cmake | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/sdk/cmake/gcc.cmake b/sdk/cmake/gcc.cmake
index c92403538c2..2e33676c1ff 100644
--- a/sdk/cmake/gcc.cmake
+++ b/sdk/cmake/gcc.cmake
@@ -114,6 +114,8 @@ endif()
 add_compile_flags("-Wall -Wpointer-arith")
 add_compile_flags("-Wno-char-subscripts -Wno-multichar -Wno-unused-value")
 add_compile_flags("-Wno-unused-const-variable")
+add_compile_flags("-Wno-unused-local-typedefs")
+add_compile_flags("-Wno-deprecated")
 
 if(NOT CMAKE_C_COMPILER_ID STREQUAL "Clang")
     add_compile_flags("-Wno-maybe-uninitialized")

Reply via email to