compilerplugins/clang/store/unique2optional.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit a7952b339e73d203ba7d2b4f701d3279bb581d16
Author:     Andrea Gelmini <[email protected]>
AuthorDate: Wed Mar 8 13:14:56 2023 +0100
Commit:     Julien Nabet <[email protected]>
CommitDate: Thu Mar 9 06:21:24 2023 +0000

    Fix typo
    
    Change-Id: Ie69dd2bacbd1f1680d82ad113b707cca24950d2d
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148471
    Tested-by: Jenkins
    Reviewed-by: Julien Nabet <[email protected]>

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())

Reply via email to