summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--compilerplugins/clang/unnecessaryparen.cxx2
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