summaryrefslogtreecommitdiff
path: root/compilerplugins/clang/passstuffbyref.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'compilerplugins/clang/passstuffbyref.cxx')
-rw-r--r--compilerplugins/clang/passstuffbyref.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/compilerplugins/clang/passstuffbyref.cxx b/compilerplugins/clang/passstuffbyref.cxx
index d24515279c16..8c9814e66003 100644
--- a/compilerplugins/clang/passstuffbyref.cxx
+++ b/compilerplugins/clang/passstuffbyref.cxx
@@ -58,7 +58,7 @@ public:
private:
template<typename T> bool traverseAnyFunctionDecl(
- T * decl, bool (RecursiveASTVisitor<PassStuffByRef>::* fn)(T *));
+ T * decl, bool (RecursiveASTVisitor::* fn)(T *));
void checkParams(const FunctionDecl * functionDecl);
void checkReturnValue(const FunctionDecl * functionDecl, const CXXMethodDecl * methodDecl);
bool isFat(QualType type);
@@ -103,7 +103,7 @@ bool PassStuffByRef::TraverseCXXConversionDecl(CXXConversionDecl * decl) {
}
template<typename T> bool PassStuffByRef::traverseAnyFunctionDecl(
- T * decl, bool (RecursiveASTVisitor<PassStuffByRef>::* fn)(T *))
+ T * decl, bool (RecursiveASTVisitor::* fn)(T *))
{
if (ignoreLocation(decl)) {
return true;