2014-07-16 22:16:56 +08:00
|
|
|
//===--- UsingNamespaceDirectiveCheck.h - clang-tidy ------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2015-03-10 00:52:33 +08:00
|
|
|
#ifndef LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_GOOGLE_USINGNAMESPACEDIRECTIVECHECK_H
|
|
|
|
#define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_GOOGLE_USINGNAMESPACEDIRECTIVECHECK_H
|
2014-07-16 22:16:56 +08:00
|
|
|
|
|
|
|
#include "../ClangTidy.h"
|
|
|
|
|
|
|
|
namespace clang {
|
|
|
|
namespace tidy {
|
2015-03-05 21:46:14 +08:00
|
|
|
namespace google {
|
2014-07-16 22:16:56 +08:00
|
|
|
namespace build {
|
|
|
|
|
2015-08-28 02:01:58 +08:00
|
|
|
/// Finds using namespace directives.
|
2014-07-16 22:16:56 +08:00
|
|
|
///
|
2016-02-25 22:31:10 +08:00
|
|
|
/// https://google.github.io/styleguide/cppguide.html#Namespaces
|
2015-08-28 02:01:58 +08:00
|
|
|
///
|
|
|
|
/// The check implements the following rule of the Google C++ Style Guide:
|
|
|
|
///
|
|
|
|
/// You may not use a using-directive to make all names from a namespace
|
|
|
|
/// available.
|
|
|
|
///
|
|
|
|
/// \code
|
|
|
|
/// // Forbidden -- This pollutes the namespace.
|
|
|
|
/// using namespace foo;
|
|
|
|
/// \endcode
|
|
|
|
///
|
|
|
|
/// Corresponding cpplint.py check name: `build/namespaces`.
|
2014-07-16 22:16:56 +08:00
|
|
|
class UsingNamespaceDirectiveCheck : public ClangTidyCheck {
|
|
|
|
public:
|
2014-09-12 16:53:36 +08:00
|
|
|
UsingNamespaceDirectiveCheck(StringRef Name, ClangTidyContext *Context)
|
|
|
|
: ClangTidyCheck(Name, Context) {}
|
2014-07-16 22:16:56 +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-16 22:16:56 +08:00
|
|
|
} // namespace tidy
|
|
|
|
} // namespace clang
|
|
|
|
|
2015-03-10 00:52:33 +08:00
|
|
|
#endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_GOOGLE_USINGNAMESPACEDIRECTIVECHECK_H
|