[Libreoffice-commits] core.git: compilerplugins/clang
Libreoffice Gerrit user
logerrit at kemper.freedesktop.org
Thu Mar 7 06:17:46 UTC 2019
compilerplugins/clang/typedefparam.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 01381db5c177eb5a1c81b9e61a5b6e00d242f114
Author: Andrea Gelmini <andrea.gelmini at gelma.net>
AuthorDate: Wed Mar 6 09:38:22 2019 +0000
Commit: Julien Nabet <serval2412 at yahoo.fr>
CommitDate: Thu Mar 7 07:17:23 2019 +0100
Fix typo
Change-Id: Icafc637004e219b523c862cb5fbad55a2bd4eaaf
Reviewed-on: https://gerrit.libreoffice.org/68835
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>
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());
More information about the Libreoffice-commits
mailing list