https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78010
Arnaud Desitter <arnaud02 at users dot sourceforge.net> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |arnaud02 at users dot sourceforge. | |net --- Comment #1 from Arnaud Desitter <arnaud02 at users dot sourceforge.net> --- Considering: struct A { virtual void f(); }; struct B : A { void f() override final; }; "clang-tidy -checks=-*,modernize-use-override" removes "override" but gcc's "-Wsuggest-override" requires it. So implementing the suggestion would make the two tools compatible.