* Some file headers were missing for files in Core/ * Some headers were included but not necessary * CMakeLists.txt was linking in LLVMSupport even though CMakeLists in subdirs were linking it in too. * StringRefisation of constructors of types in FileOverrides.h * Other misc cleanups Author: Guillaume Papin <guillaume.papin@epitech.eu> llvm-svn: 185811
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 CPP11_MIGRATE_ADD_OVERRIDE_MATCHERS_H
|
|
#define CPP11_MIGRATE_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 // CPP11_MIGRATE_ADD_OVERRIDE_MATCHERS_H
|