[PATCH] D44295: [clang-tidy] Detects and fixes calls to grand-...parent virtual methods instead of calls to parent's virtual methods
Malcolm Parsons via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Mon Mar 12 02:30:07 PDT 2018
malcolm.parsons added inline comments.
================
Comment at: test/clang-tidy/bugprone-parent-virtual-call.cpp:115
+ int virt_1() override { return A::virt_1(); }
+ // CHECK-MESSAGES: :[[@LINE-1]]:34: warning: 'A::virt_1' is a grand-parent's method, not parent's. Did you mean 'BF<F>'?
+ // CHECK-FIXES: int virt_1() override { return BF<F>::virt_1(); }
----------------
There isn't an F in scope.
The base class isn't a dependent type here, so no template params are needed.
Repository:
rCTE Clang Tools Extra
https://reviews.llvm.org/D44295
More information about the cfe-commits
mailing list