From 3bec42fdf01eb3f7403876979023ad952228ee73 Mon Sep 17 00:00:00 2001 From: Julian Andres Klode Date: Mon, 6 May 2019 16:29:40 +0200 Subject: CMake: Enforce "override" use on overriden methods This ensures that we do not accidentally stop overriding a method because it's signature changed in an API break. --- test/libapt/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) (limited to 'test') diff --git a/test/libapt/CMakeLists.txt b/test/libapt/CMakeLists.txt index 57ef5ac3f..d44d77ad4 100644 --- a/test/libapt/CMakeLists.txt +++ b/test/libapt/CMakeLists.txt @@ -27,6 +27,8 @@ if(GTEST_FOUND) # so disable the offending warnings while compiling tests for now add_optional_compile_options(Wno-undef) add_optional_compile_options(Wno-ctor-dtor-privacy) + # Do not force override for gtest, gtest is missing override specifiers + add_optional_compile_options(Wno-suggest-override) # Definition of the C++ files used to build the test binary - note that this # is expanded at CMake time, so you have to rerun cmake if you add or remove -- cgit v1.2.3