2016-12-18 05:14:37 +03:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
// The list of #include directives necessary for the checker classes that
|
|
|
|
// are compatible with clang-tidy.
|
|
|
|
|
|
|
|
#include "ArithmeticArgChecker.h"
|
|
|
|
#include "AssertAssignmentChecker.h"
|
|
|
|
#include "ExplicitImplicitChecker.h"
|
|
|
|
#include "ExplicitOperatorBoolChecker.h"
|
|
|
|
#include "KungFuDeathGripChecker.h"
|
2016-12-19 03:42:04 +03:00
|
|
|
#include "MustOverrideChecker.h"
|
2016-12-19 04:30:47 +03:00
|
|
|
#include "MustUseChecker.h"
|
2016-12-18 05:14:37 +03:00
|
|
|
#include "NaNExprChecker.h"
|
|
|
|
#include "NeedsNoVTableTypeChecker.h"
|
|
|
|
#include "NoAddRefReleaseOnReturnChecker.h"
|
|
|
|
#include "NoAutoTypeChecker.h"
|
|
|
|
#include "NoDuplicateRefCntMemberChecker.h"
|
|
|
|
#include "NoExplicitMoveConstructorChecker.h"
|
|
|
|
#include "NonMemMovableMemberChecker.h"
|
|
|
|
#include "NonMemMovableTemplateArgChecker.h"
|
|
|
|
#include "NonParamInsideFunctionDeclChecker.h"
|
|
|
|
#include "OverrideBaseCallChecker.h"
|
|
|
|
#include "OverrideBaseCallUsageChecker.h"
|
|
|
|
#include "RefCountedCopyConstructorChecker.h"
|
|
|
|
#include "RefCountedInsideLambdaChecker.h"
|
|
|
|
#include "ScopeChecker.h"
|
|
|
|
#include "SprintfLiteralChecker.h"
|
|
|
|
#include "TrivialCtorDtorChecker.h"
|
|
|
|
|