2014-07-15 17:50:32 +08:00
|
|
|
//===--- ExplicitMakePairCheck.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-07-15 17:50:32 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2015-03-10 00:52:33 +08:00
|
|
|
#ifndef LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_GOOGLE_EXPLICITMAKEPAIRCHECK_H
|
|
|
|
#define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_GOOGLE_EXPLICITMAKEPAIRCHECK_H
|
2014-07-15 17:50:32 +08:00
|
|
|
|
2019-03-25 20:38:26 +08:00
|
|
|
#include "../ClangTidyCheck.h"
|
2014-07-15 17:50:32 +08:00
|
|
|
|
|
|
|
namespace clang {
|
|
|
|
namespace tidy {
|
2015-03-05 21:46:14 +08:00
|
|
|
namespace google {
|
2014-07-15 17:50:32 +08:00
|
|
|
namespace build {
|
|
|
|
|
2015-08-28 02:01:58 +08:00
|
|
|
/// Check that `make_pair`'s template arguments are deduced.
|
2014-07-15 17:50:32 +08:00
|
|
|
///
|
2015-08-28 02:01:58 +08:00
|
|
|
/// G++ 4.6 in C++11 mode fails badly if `make_pair`'s template arguments are
|
2014-07-15 17:50:32 +08:00
|
|
|
/// specified explicitly, and such use isn't intended in any case.
|
|
|
|
///
|
|
|
|
/// Corresponding cpplint.py check name: 'build/explicit_make_pair'.
|
|
|
|
class ExplicitMakePairCheck : public ClangTidyCheck {
|
|
|
|
public:
|
2014-09-12 16:53:36 +08:00
|
|
|
ExplicitMakePairCheck(StringRef Name, ClangTidyContext *Context)
|
|
|
|
: ClangTidyCheck(Name, Context) {}
|
2014-07-15 17:50:32 +08:00
|
|
|
void registerMatchers(ast_matchers::MatchFinder *Finder) override;
|
|
|
|
void check(const ast_matchers::MatchFinder::MatchResult &Result) override;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace build
|
2015-03-05 21:46:14 +08:00
|
|
|
} // namespace google
|
2014-07-15 17:50:32 +08:00
|
|
|
} // namespace tidy
|
|
|
|
} // namespace clang
|
|
|
|
|
2015-03-10 00:52:33 +08:00
|
|
|
#endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_GOOGLE_EXPLICITMAKEPAIRCHECK_H
|