2014-06-30 06:19:53 +08:00
|
|
|
//===--- AvoidCStyleCastsCheck.h - clang-tidy -------------------*- C++ -*-===//
|
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2014-06-30 06:19:53 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2015-03-10 00:52:33 +08:00
|
|
|
#ifndef LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_GOOGLE_AVOIDCSTYLECASTSCHECK_H
|
|
|
|
#define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_GOOGLE_AVOIDCSTYLECASTSCHECK_H
|
2014-06-30 06:19:53 +08:00
|
|
|
|
2019-03-25 20:38:26 +08:00
|
|
|
#include "../ClangTidyCheck.h"
|
2014-06-30 06:19:53 +08:00
|
|
|
|
|
|
|
namespace clang {
|
|
|
|
namespace tidy {
|
2015-03-05 21:46:14 +08:00
|
|
|
namespace google {
|
2014-06-30 06:19:53 +08:00
|
|
|
namespace readability {
|
|
|
|
|
2015-08-28 02:01:58 +08:00
|
|
|
/// Finds usages of C-style casts.
|
2014-06-30 06:19:53 +08:00
|
|
|
///
|
2016-02-25 22:31:10 +08:00
|
|
|
/// https://google.github.io/styleguide/cppguide.html#Casting
|
2015-08-28 02:01:58 +08:00
|
|
|
///
|
2014-06-30 06:19:53 +08:00
|
|
|
/// Corresponding cpplint.py check name: 'readability/casting'.
|
2014-06-30 17:54:12 +08:00
|
|
|
///
|
2015-08-28 02:01:58 +08:00
|
|
|
/// This check is similar to `-Wold-style-cast`, but it suggests automated fixes
|
|
|
|
/// in some cases. The reported locations should not be different from the
|
|
|
|
/// ones generated by `-Wold-style-cast`.
|
2020-10-22 19:30:30 +08:00
|
|
|
///
|
|
|
|
/// For the user-facing documentation see:
|
|
|
|
/// http://clang.llvm.org/extra/clang-tidy/checks/google-readability-casting.html
|
2014-06-30 06:19:53 +08:00
|
|
|
class AvoidCStyleCastsCheck : public ClangTidyCheck {
|
|
|
|
public:
|
2014-09-12 16:53:36 +08:00
|
|
|
AvoidCStyleCastsCheck(StringRef Name, ClangTidyContext *Context)
|
|
|
|
: ClangTidyCheck(Name, Context) {}
|
2014-06-30 06:19:53 +08:00
|
|
|
void registerMatchers(ast_matchers::MatchFinder *Finder) override;
|
|
|
|
void check(const ast_matchers::MatchFinder::MatchResult &Result) override;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace readability
|
2015-03-05 21:46:14 +08:00
|
|
|
} // namespace google
|
2014-06-30 06:19:53 +08:00
|
|
|
} // namespace tidy
|
|
|
|
} // namespace clang
|
|
|
|
|
2015-03-10 00:52:33 +08:00
|
|
|
#endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_GOOGLE_AVOIDCSTYLECASTSCHECK_H
|