forked from OSchip/llvm-project
26 lines
858 B
C
26 lines
858 B
C
|
//===---------- ASTUtils.h - clang-tidy -----------------------------------===//
|
||
|
//
|
||
|
// The LLVM Compiler Infrastructure
|
||
|
//
|
||
|
// This file is distributed under the University of Illinois Open Source
|
||
|
// License. See LICENSE.TXT for details.
|
||
|
//
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
|
||
|
#ifndef LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_ASTUTILS_H
|
||
|
#define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_ASTUTILS_H
|
||
|
|
||
|
#include "clang/AST/AST.h"
|
||
|
|
||
|
namespace clang {
|
||
|
namespace tidy {
|
||
|
namespace utils {
|
||
|
// Returns the (closest) Function declaration surrounding |Statement| or NULL.
|
||
|
const FunctionDecl *getSurroundingFunction(ASTContext &Context,
|
||
|
const Stmt &Statement);
|
||
|
} // namespace utils
|
||
|
} // namespace tidy
|
||
|
} // namespace clang
|
||
|
|
||
|
#endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_ASTUTILS_H
|