diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2014-07-22 12:30:35 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2014-07-22 12:30:35 +0000 |
commit | 8ca8651171ae2caeb93c15a9ec6189cff8d2444a (patch) | |
tree | 27527e7a36aba0a245f2c401f32da6dcdcfc7b27 /clang/lib/Parse/ParseDecl.cpp | |
parent | 8f41c3eb74619a82b1c41bba3e09467d0a65db0c (diff) | |
download | bcm5719-llvm-8ca8651171ae2caeb93c15a9ec6189cff8d2444a.tar.gz bcm5719-llvm-8ca8651171ae2caeb93c15a9ec6189cff8d2444a.zip |
[clang-tidy] Add a check for RAII temporaries.
Summary:
This tries to find code similar that immediately destroys
an object that looks like it's trying to follow RAII.
{
scoped_lock(&global_mutex);
critical_section();
}
This checker will have false positives if someone uses this pattern
to legitimately invoke a destructor immediately (or the statement is
at the end of a scope anyway). To reduce the number we ignore this
pattern in macros (this is heavily used by gtest) and ignore objects
with no user-defined destructor.
Reviewers: alexfh, djasper
Subscribers: cfe-commits
Differential Revision: http://reviews.llvm.org/D4615
llvm-svn: 213647
Diffstat (limited to 'clang/lib/Parse/ParseDecl.cpp')
0 files changed, 0 insertions, 0 deletions