forked from OSchip/llvm-project
29 lines
1.0 KiB
C++
29 lines
1.0 KiB
C++
//===-- AddOverride/AddOverrideMatchers.h - add C++11 override --*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
///
|
|
/// \file
|
|
/// \brief This file contains the declarations for matcher-generating functions
|
|
/// and names for bound nodes found by AST matchers.
|
|
///
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef CLANG_MODERNIZE_ADD_OVERRIDE_MATCHERS_H
|
|
#define CLANG_MODERNIZE_ADD_OVERRIDE_MATCHERS_H
|
|
|
|
#include "clang/ASTMatchers/ASTMatchers.h"
|
|
|
|
/// Name to bind with matched expressions.
|
|
extern const char *MethodId;
|
|
|
|
/// \brief Create a matcher that finds member function declarations that are
|
|
/// candidates for adding the override attribute.
|
|
clang::ast_matchers::DeclarationMatcher makeCandidateForOverrideAttrMatcher();
|
|
|
|
#endif // CLANG_MODERNIZE_ADD_OVERRIDE_MATCHERS_H
|