diff options
author | Alexander Kornienko <alexfh@google.com> | 2015-06-22 09:47:44 +0000 |
---|---|---|
committer | Alexander Kornienko <alexfh@google.com> | 2015-06-22 09:47:44 +0000 |
commit | ac58acc7f25239a1d9ef45a97aa4a395ef714748 (patch) | |
tree | fa39561f2a6b22c1e6f3368535fbd2e08df2fbdd /lib/StaticAnalyzer/Checkers/TaintTesterChecker.cpp | |
parent | 6177d6a1c142dff1f7febfc9186909e0408e3ed5 (diff) | |
download | clang-ac58acc7f25239a1d9ef45a97aa4a395ef714748.tar.gz |
Fixed/added namespace ending comments using clang-tidy. NFC
The patch is generated using this command:
$ tools/extra/clang-tidy/tool/run-clang-tidy.py -fix \
-checks=-*,llvm-namespace-comment -header-filter='llvm/.*|clang/.*' \
work/llvm/tools/clang
To reduce churn, not touching namespaces spanning less than 10 lines.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@240270 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/StaticAnalyzer/Checkers/TaintTesterChecker.cpp')
-rw-r--r-- | lib/StaticAnalyzer/Checkers/TaintTesterChecker.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/StaticAnalyzer/Checkers/TaintTesterChecker.cpp b/lib/StaticAnalyzer/Checkers/TaintTesterChecker.cpp index d33c977826..22f4304b05 100644 --- a/lib/StaticAnalyzer/Checkers/TaintTesterChecker.cpp +++ b/lib/StaticAnalyzer/Checkers/TaintTesterChecker.cpp @@ -34,7 +34,7 @@ class TaintTesterChecker : public Checker< check::PostStmt<Expr> > { public: void checkPostStmt(const Expr *E, CheckerContext &C) const; }; -} +} // namespace inline void TaintTesterChecker::initBugType() const { if (!BT) |