2010-01-10 22:38:13 +08:00
|
|
|
//===--- AttrImpl.cpp - Classes for representing attributes -----*- 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
|
2010-01-10 22:38:13 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2015-03-20 00:06:49 +08:00
|
|
|
// This file contains out-of-line methods for Attr classes.
|
2010-01-10 22:38:13 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "clang/AST/ASTContext.h"
|
2016-07-19 03:02:11 +08:00
|
|
|
#include "clang/AST/Attr.h"
|
2010-08-19 07:23:40 +08:00
|
|
|
#include "clang/AST/Expr.h"
|
2012-12-04 17:13:33 +08:00
|
|
|
#include "clang/AST/Type.h"
|
2010-01-10 22:38:13 +08:00
|
|
|
using namespace clang;
|
|
|
|
|
2010-08-19 07:23:40 +08:00
|
|
|
#include "clang/AST/AttrImpl.inc"
|