forked from OSchip/llvm-project
[clang] Disable -Wsuggest-override for unittests/
This commit is contained in:
parent
b907ad539a
commit
a361aa5249
|
@ -10,6 +10,10 @@ if(CLANG_BUILT_STANDALONE)
|
|||
endif()
|
||||
endif()
|
||||
|
||||
if (CXX_SUPPORTS_SUGGEST_OVERRIDE_FLAG)
|
||||
add_definitions("-Wno-suggest-override")
|
||||
endif()
|
||||
|
||||
# add_clang_unittest(test_dirname file1.cpp file2.cpp)
|
||||
#
|
||||
# Will compile the list of files together and link against the clang
|
||||
|
|
Loading…
Reference in New Issue