forked from OSchip/llvm-project
Make FunctionDecl::isDefined non-virtual, NFC
This convenience wrapper was made virtual when it was introduced. I see no overrides and no reason for it to be virtual, so make it non-virtual.
This commit is contained in:
parent
30436a1ce7
commit
753a3245f7
|
@ -2030,7 +2030,7 @@ public:
|
|||
/// declaration to the declaration that is a definition (if there is one).
|
||||
bool isDefined(const FunctionDecl *&Definition) const;
|
||||
|
||||
virtual bool isDefined() const {
|
||||
bool isDefined() const {
|
||||
const FunctionDecl* Definition;
|
||||
return isDefined(Definition);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue