diff options
Diffstat (limited to 'compilerplugins')
-rw-r--r-- | compilerplugins/clang/store/unique2optional.cxx | 2 |
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()) |