njames93 added a comment. I'm not sure this is really a great improvement. If the override candidate originates in a templated base class I think we should still warn
struct Foo { virtual void foo(); }; template <typeame T> struct DirectBase : T { virtual void foo(); }; DirectBase<Foo> Y; // This instantiation should not warn about the above declaration. template<typename T> struct Bar { virtual void bar(); }; template <typename T> struct TemplateBase : Bar<T> { virtual void bar(); }; TemplateBase<int> Y; // This instantiation should warn about the above declaration. // Or potentially configurable to either warn or ignore this case. Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D147924/new/ https://reviews.llvm.org/D147924 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits