Deleted Added
full compact
AttrKinds.h (218893) AttrKinds.h (221345)
1//===----- Attr.h - Enum values for C Attribute Kinds ----------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//

--- 8 unchanged lines hidden (view full) ---

17namespace clang {
18
19namespace attr {
20
21// Kind - This is a list of all the recognized kinds of attributes.
22enum Kind {
23#define ATTR(X) X,
24#define LAST_INHERITABLE_ATTR(X) X, LAST_INHERITABLE = X,
1//===----- Attr.h - Enum values for C Attribute Kinds ----------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//

--- 8 unchanged lines hidden (view full) ---

17namespace clang {
18
19namespace attr {
20
21// Kind - This is a list of all the recognized kinds of attributes.
22enum Kind {
23#define ATTR(X) X,
24#define LAST_INHERITABLE_ATTR(X) X, LAST_INHERITABLE = X,
25#define LAST_INHERITABLE_PARAM_ATTR(X) X, LAST_INHERITABLE_PARAM = X,
25#include "clang/Basic/AttrList.inc"
26 NUM_ATTRS
27};
28
29} // end namespace attr
30} // end namespace clang
31
32#endif
26#include "clang/Basic/AttrList.inc"
27 NUM_ATTRS
28};
29
30} // end namespace attr
31} // end namespace clang
32
33#endif