annotate clang/lib/AST/AttrImpl.cpp @ 150:1d019706d866

LLVM10
author anatofuz
date Thu, 13 Feb 2020 15:10:13 +0900
parents
children 0572611fdcc8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
150
anatofuz
parents:
diff changeset
1 //===--- AttrImpl.cpp - Classes for representing attributes -----*- C++ -*-===//
anatofuz
parents:
diff changeset
2 //
anatofuz
parents:
diff changeset
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
anatofuz
parents:
diff changeset
4 // See https://llvm.org/LICENSE.txt for license information.
anatofuz
parents:
diff changeset
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
anatofuz
parents:
diff changeset
6 //
anatofuz
parents:
diff changeset
7 //===----------------------------------------------------------------------===//
anatofuz
parents:
diff changeset
8 //
anatofuz
parents:
diff changeset
9 // This file contains out-of-line methods for Attr classes.
anatofuz
parents:
diff changeset
10 //
anatofuz
parents:
diff changeset
11 //===----------------------------------------------------------------------===//
anatofuz
parents:
diff changeset
12
anatofuz
parents:
diff changeset
13 #include "clang/AST/ASTContext.h"
anatofuz
parents:
diff changeset
14 #include "clang/AST/Attr.h"
anatofuz
parents:
diff changeset
15 #include "clang/AST/Expr.h"
anatofuz
parents:
diff changeset
16 #include "clang/AST/Type.h"
anatofuz
parents:
diff changeset
17 using namespace clang;
anatofuz
parents:
diff changeset
18
anatofuz
parents:
diff changeset
19 #include "clang/AST/AttrImpl.inc"