hanchenye-llvm-project/clang-tools-extra/test/clang-tidy
Samuel Benzaquen 3a571019c8 Add clang-tidy check to remove redundant .get() calls on smart pointers.
Summary:
This check finds and removes redundant .get() calls on smart pointers.
Example:
  ptr.get()->Foo()   ==>   ptr->Foo()

Reviewers: alexfh

CC: cfe-commits

Differential Revision: http://llvm-reviews.chandlerc.com/D3186

llvm-svn: 204947
2014-03-27 17:42:26 +00:00
..
arg-comments.cpp Add an argument comment checker to clang-tidy. 2014-03-18 04:46:45 +00:00
basic.cpp
deduplication.cpp Deduplicate clang-tidy error messages by file, offset and message. 2014-03-10 09:45:49 +00:00
diagnostic.cpp Post-filter clang-tidy diagnostic messages. 2014-03-20 09:38:22 +00:00
fix.cpp Output messages when clang-tidy applies fix-its. 2014-03-27 10:24:11 +00:00
macros.cpp Use DiagnosticRenderer to convert clang diagnostics to clang-tidy ones. 2014-03-10 13:11:17 +00:00
nolint.cpp Added a naive NOLINT implementation. 2014-02-28 00:27:50 +00:00
redundant-smartptr-get-fix.cpp Add clang-tidy check to remove redundant .get() calls on smart pointers. 2014-03-27 17:42:26 +00:00
redundant-smartptr-get.cpp Add clang-tidy check to remove redundant .get() calls on smart pointers. 2014-03-27 17:42:26 +00:00
select-checks.cpp Use more specific checks filter in the test. 2014-03-06 08:31:03 +00:00
static-analyzer.cpp Consume checker names from clang static analyzer. 2014-02-12 09:52:07 +00:00