aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSergio Martins <smartins@kde.org>2021-01-10 17:43:52 +0000
committerSergio Martins <smartins@kde.org>2021-01-10 17:43:52 +0000
commit299a0c19aa647f731b9098edb48cb70619a5cfdb (patch)
tree9b332e6ed8e7e5b6714c34ec5d544052512581fc
parentd3d5120ffd922601e406b9cca8e557f6bd0e0298 (diff)
Fix unity build on windowsv1.9
-rw-r--r--src/Utils.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Utils.cpp b/src/Utils.cpp
index 27f38033..dc1cd766 100644
--- a/src/Utils.cpp
+++ b/src/Utils.cpp
@@ -346,7 +346,7 @@ static bool isArgOfFunc(T expr, FunctionDecl *fDecl, const VarDecl *varDecl, boo
continue;
QualType qt = paramDecl->getType();
- const Type *t = qt.getTypePtrOrNull();
+ const clang::Type *t = qt.getTypePtrOrNull();
if (!t)
continue;