blob: 0ef925ec1c9015e2b795ce911c497e40145eedaf [file] [log] [blame]
Anton Korobeynikov3d364fd2010-01-10 14:38:13 +00001//===--- AttrImpl.cpp - Classes for representing attributes -----*- C++ -*-===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Anton Korobeynikov3d364fd2010-01-10 14:38:13 +00006//
7//===----------------------------------------------------------------------===//
8//
Benjamin Kramer845e32c2015-03-19 16:06:49 +00009// This file contains out-of-line methods for Attr classes.
Anton Korobeynikov3d364fd2010-01-10 14:38:13 +000010//
11//===----------------------------------------------------------------------===//
12
Anton Korobeynikov3d364fd2010-01-10 14:38:13 +000013#include "clang/AST/ASTContext.h"
Mehdi Amini9670f842016-07-18 19:02:11 +000014#include "clang/AST/Attr.h"
Alexis Huntdcfba7b2010-08-18 23:23:40 +000015#include "clang/AST/Expr.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000016#include "clang/AST/Type.h"
Anton Korobeynikov3d364fd2010-01-10 14:38:13 +000017using namespace clang;
18
Alexis Huntdcfba7b2010-08-18 23:23:40 +000019#include "clang/AST/AttrImpl.inc"