diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2023-08-29 14:09:05 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2023-08-29 14:54:13 +0200 |
commit | 988851cb5cc8d435581f8018f664f31da67d5785 (patch) | |
tree | a69fe6323767a3e91314bb648b2323b579d35a02 /compilerplugins/clang | |
parent | a2123f9441859b700d17378965870d1baabbac32 (diff) |
Fix typo
Change-Id: I76773e5273579536aef330d5eb83887bba7e7be8
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/156247
Tested-by: Julien Nabet <serval2412@yahoo.fr>
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'compilerplugins/clang')
-rw-r--r-- | compilerplugins/clang/unnecessaryparen.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
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 |