[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / clang-tools-extra / clang-tidy / abseil / DurationConversionCastCheck.h
blob5ead9ac4c70a10cdece469f8bd86aedcb0bc4a06
1 //===--- DurationConversionCastCheck.h - clang-tidy -------------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 #ifndef LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_ABSEIL_DURATIONCONVERSIONCASTCHECK_H
10 #define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_ABSEIL_DURATIONCONVERSIONCASTCHECK_H
12 #include "../ClangTidyCheck.h"
14 namespace clang {
15 namespace tidy {
16 namespace abseil {
18 /// Checks for casts of ``absl::Duration`` conversion functions, and recommends
19 /// the right conversion function instead.
20 ///
21 /// For the user-facing documentation see:
22 /// http://clang.llvm.org/extra/clang-tidy/checks/abseil/duration-conversion-cast.html
23 class DurationConversionCastCheck : public ClangTidyCheck {
24 public:
25 DurationConversionCastCheck(StringRef Name, ClangTidyContext *Context)
26 : ClangTidyCheck(Name, Context) {}
27 void registerMatchers(ast_matchers::MatchFinder *Finder) override;
28 void check(const ast_matchers::MatchFinder::MatchResult &Result) override;
31 } // namespace abseil
32 } // namespace tidy
33 } // namespace clang
35 #endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_ABSEIL_DURATIONCONVERSIONCASTCHECK_H