summaryrefslogtreecommitdiff
path: root/compilerplugins/clang/typedefparam.cxx
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-03-06 09:38:22 +0000
committerJulien Nabet <serval2412@yahoo.fr>2019-03-07 07:17:23 +0100
commit01381db5c177eb5a1c81b9e61a5b6e00d242f114 (patch)
tree6978e6051ab0bcea7b351b10102aed6968b9a7b4 /compilerplugins/clang/typedefparam.cxx
parent8b5e23eac31cafbd442a3acab5fbcf98bfd0af11 (diff)
Fix typo
Change-Id: Icafc637004e219b523c862cb5fbad55a2bd4eaaf Reviewed-on: https://gerrit.libreoffice.org/68835 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'compilerplugins/clang/typedefparam.cxx')
-rw-r--r--compilerplugins/clang/typedefparam.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/compilerplugins/clang/typedefparam.cxx b/compilerplugins/clang/typedefparam.cxx
index 8c96aa62576e..e4ed07da4e13 100644
--- a/compilerplugins/clang/typedefparam.cxx
+++ b/compilerplugins/clang/typedefparam.cxx
@@ -232,7 +232,7 @@ static bool areTypesEqual(QualType lhs, QualType rhs)
auto rhsTypedef = dyn_cast<TypedefType>(rhsType);
if (!rhsTypedef)
return false;
- // comparing the underlying Decl's here doesn't work, they are not uniqued
+ // comparing the underlying Decl's here doesn't work, they are not unique
if (lhsTypedef->getDecl()->getName() != rhsTypedef->getDecl()->getName())
return false;
return areTypesEqual(lhsTypedef->desugar(), rhsTypedef->desugar());