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