compilerplugins/clang/unnecessaryparen.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 988851cb5cc8d435581f8018f664f31da67d5785 Author: Andrea Gelmini <[email protected]> AuthorDate: Tue Aug 29 14:09:05 2023 +0200 Commit: Julien Nabet <[email protected]> CommitDate: Tue Aug 29 14:54:13 2023 +0200 Fix typo Change-Id: I76773e5273579536aef330d5eb83887bba7e7be8 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/156247 Tested-by: Julien Nabet <[email protected]> Reviewed-by: Julien Nabet <[email protected]> diff --git a/compilerplugins/clang/unnecessaryparen.cxx b/compilerplugins/clang/unnecessaryparen.cxx index f31d570b9bdd..d24986f0b669 100644 --- a/compilerplugins/clang/unnecessaryparen.cxx +++ b/compilerplugins/clang/unnecessaryparen.cxx @@ -166,7 +166,7 @@ private: if (d->getValue().isStruct() || d->getValue().isUnion()) { //TODO: There appears to be no way currently to get at the original // clang::StringLiteral expression from which this struct/union - // non-type template argument was constructued, so no way to tell + // non-type template argument was constructed, so no way to tell // whether it was written as a single literal (=> in which case we // should warn about unnecessary parentheses) or as a concatenation // of multiple literals (=> in which case we should not warn). So
