Kaydet (Commit) 01381db5 authored tarafından Andrea Gelmini's avatar Andrea Gelmini Kaydeden (comit) Julien Nabet

Fix typo

Change-Id: Icafc637004e219b523c862cb5fbad55a2bd4eaaf
Reviewed-on: https://gerrit.libreoffice.org/68835
Tested-by: Jenkins
Reviewed-by: 's avatarJulien Nabet <serval2412@yahoo.fr>
üst 8b5e23ea
...@@ -232,7 +232,7 @@ static bool areTypesEqual(QualType lhs, QualType rhs) ...@@ -232,7 +232,7 @@ static bool areTypesEqual(QualType lhs, QualType rhs)
auto rhsTypedef = dyn_cast<TypedefType>(rhsType); auto rhsTypedef = dyn_cast<TypedefType>(rhsType);
if (!rhsTypedef) if (!rhsTypedef)
return false; 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()) if (lhsTypedef->getDecl()->getName() != rhsTypedef->getDecl()->getName())
return false; return false;
return areTypesEqual(lhsTypedef->desugar(), rhsTypedef->desugar()); return areTypesEqual(lhsTypedef->desugar(), rhsTypedef->desugar());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment