summaryrefslogtreecommitdiff
path: root/compilerplugins
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2023-03-08 13:14:56 +0100
committerJulien Nabet <serval2412@yahoo.fr>2023-03-09 06:21:24 +0000
commita7952b339e73d203ba7d2b4f701d3279bb581d16 (patch)
treeef32cffde816128aba255ff163bad35adc90064f /compilerplugins
parent5eae429d026b3f502e40265376772e2188239fb5 (diff)
Fix typo
Change-Id: Ie69dd2bacbd1f1680d82ad113b707cca24950d2d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148471 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'compilerplugins')
-rw-r--r--compilerplugins/clang/store/unique2optional.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/compilerplugins/clang/store/unique2optional.cxx b/compilerplugins/clang/store/unique2optional.cxx
index cc1dc66f193c..e4b8efa1e110 100644
--- a/compilerplugins/clang/store/unique2optional.cxx
+++ b/compilerplugins/clang/store/unique2optional.cxx
@@ -205,7 +205,7 @@ bool Unique2Optional::doDecl(const DeclaratorDecl* fieldDecl)
auto paramRecordDecl = firstTemplateParamType->getAsCXXRecordDecl();
if (paramRecordDecl)
{
- // if the pointed-to type has a virtual destructor, then we dont know for sure
+ // if the pointed-to type has a virtual destructor, then we don't know for sure
// what size type will be stored there
if (!paramRecordDecl->isEffectivelyFinal())
if (CXXDestructorDecl* dd = paramRecordDecl->getDestructor())