From d29bd2ac60bcb6ad15d9746303e0d54747eca4b1 Mon Sep 17 00:00:00 2001 From: Andrea Gelmini Date: Tue, 23 Jul 2019 19:51:26 +0200 Subject: Fix typos It passed "make check" Change-Id: I055017a7616ed4d9725c66a387c040b55e22751f Reviewed-on: https://gerrit.libreoffice.org/76202 Tested-by: Jenkins Reviewed-by: Andrea Gelmini --- compilerplugins/clang/referencecasting.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'compilerplugins/clang') diff --git a/compilerplugins/clang/referencecasting.cxx b/compilerplugins/clang/referencecasting.cxx index e60177f4effb..ef11b0b5b942 100644 --- a/compilerplugins/clang/referencecasting.cxx +++ b/compilerplugins/clang/referencecasting.cxx @@ -375,7 +375,7 @@ static int derivedFromCount(QualType qt, const CXXRecordDecl* baseRecord) */ static bool isDerivedFrom(const CXXRecordDecl* subtypeRecord, const CXXRecordDecl* baseRecord) { - // if there is more than one case, then we have an ambigous conversion, and we can't change the code + // if there is more than one case, then we have an ambiguous conversion, and we can't change the code // to use the upcasting constructor. return derivedFromCount(subtypeRecord, baseRecord) == 1; } -- cgit