clang-tools  8.0.0
MiscTidyModule.cpp
Go to the documentation of this file.
1 //===--- MiscTidyModule.cpp - clang-tidy ----------------------------------===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 
10 #include "../ClangTidy.h"
11 #include "../ClangTidyModule.h"
12 #include "../ClangTidyModuleRegistry.h"
14 #include "MisplacedConstCheck.h"
16 #include "NonCopyableObjects.h"
19 #include "StaticAssertCheck.h"
23 #include "UnusedAliasDeclsCheck.h"
24 #include "UnusedParametersCheck.h"
25 #include "UnusedUsingDeclsCheck.h"
26 
27 namespace clang {
28 namespace tidy {
29 namespace misc {
30 
31 class MiscModule : public ClangTidyModule {
32 public:
33  void addCheckFactories(ClangTidyCheckFactories &CheckFactories) override {
35  "misc-definitions-in-headers");
36  CheckFactories.registerCheck<MisplacedConstCheck>("misc-misplaced-const");
37  CheckFactories.registerCheck<NewDeleteOverloadsCheck>(
38  "misc-new-delete-overloads");
39  CheckFactories.registerCheck<NonCopyableObjectsCheck>(
40  "misc-non-copyable-objects");
42  "misc-non-private-member-variables-in-classes");
44  "misc-redundant-expression");
45  CheckFactories.registerCheck<StaticAssertCheck>("misc-static-assert");
47  "misc-throw-by-value-catch-by-reference");
49  "misc-unconventional-assign-operator");
51  "misc-uniqueptr-reset-release");
52  CheckFactories.registerCheck<UnusedAliasDeclsCheck>(
53  "misc-unused-alias-decls");
54  CheckFactories.registerCheck<UnusedParametersCheck>(
55  "misc-unused-parameters");
56  CheckFactories.registerCheck<UnusedUsingDeclsCheck>(
57  "misc-unused-using-decls");
58  }
59 };
60 
61 } // namespace misc
62 
63 // Register the MiscTidyModule using this statically initialized variable.
64 static ClangTidyModuleRegistry::Add<misc::MiscModule>
65  X("misc-module", "Adds miscellaneous lint checks.");
66 
67 // This anchor is used to force the linker to link in the generated object file
68 // and thus register the MiscModule.
69 volatile int MiscModuleAnchorSource = 0;
70 
71 } // namespace tidy
72 } // namespace clang
This check diagnoses when a const qualifier is applied to a typedef to a pointer type rather than to ...
Find and replace unique_ptr::reset(release()) with std::move().
checks for locations that do not throw by value
void registerCheck(StringRef CheckName)
Registers the CheckType with the name Name.
Replaces assert() with static_assert() if the condition is evaluatable at compile time...
Finds unused namespace alias declarations.
This checker finds classes that not only contain the data (non-static member variables), but also have logic (non-static member functions), and diagnoses all member variables that have any other scope other than private.
void addCheckFactories(ClangTidyCheckFactories &CheckFactories) override
Implement this function in order to register all CheckFactories belonging to this module...
A collection of ClangTidyCheckFactory instances.
Finds unused using declarations.
A clang-tidy module groups a number of ClangTidyChecks and gives them a prefixed name.
The check flags dereferences and non-pointer declarations of objects that are not meant to be passed ...
static ClangTidyModuleRegistry::Add< bugprone::BugproneModule > X("bugprone-module", "Adds checks for bugprone code constructs.")
The checker detects expressions that are redundant, because they contain ineffective, useless parts.
volatile int MiscModuleAnchorSource
Finds non-extern non-inline function and variable definitions in header files, which can lead to pote...
Finds declarations of assignment operators with the wrong return and/or argument types and definition...
===– Representation.cpp - ClangDoc Representation --------—*- C++ -*-===//
Finds unused parameters and fixes them, so that -Wunused-parameter can be turned on.