summaryrefslogtreecommitdiff
path: root/compilerplugins/clang/writeonlyvars.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'compilerplugins/clang/writeonlyvars.cxx')
-rw-r--r--compilerplugins/clang/writeonlyvars.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/compilerplugins/clang/writeonlyvars.cxx b/compilerplugins/clang/writeonlyvars.cxx
index 95d6ac3ad0a2..d9daa172820d 100644
--- a/compilerplugins/clang/writeonlyvars.cxx
+++ b/compilerplugins/clang/writeonlyvars.cxx
@@ -796,7 +796,7 @@ void WriteOnlyVars::checkIfWrittenTo(const VarDecl* varDecl, const Expr* memberE
{
// if we're inside a block that looks like
// if (varDecl)
- // ....
+ // ...
// then writes to this var don't matter, because unless we find another write to this var, this var is dead
if (std::find(insideConditionalCheckOfMemberSet.begin(),
insideConditionalCheckOfMemberSet.end(), varDecl)