Deleted Added
full compact
DeclGroup.h (198092) DeclGroup.h (198893)
1//===--- DeclGroup.h - Classes for representing groups of Decls -*- 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//===----------------------------------------------------------------------===//
9//
10// This file defines the DeclGroup, DeclGroupRef, and OwningDeclGroup classes.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_CLANG_AST_DECLGROUP_H
15#define LLVM_CLANG_AST_DECLGROUP_H
16
1//===--- DeclGroup.h - Classes for representing groups of Decls -*- 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//===----------------------------------------------------------------------===//
9//
10// This file defines the DeclGroup, DeclGroupRef, and OwningDeclGroup classes.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_CLANG_AST_DECLGROUP_H
15#define LLVM_CLANG_AST_DECLGROUP_H
16
17#include "llvm/Support/DataTypes.h"
17#include "llvm/System/DataTypes.h"
18#include <cassert>
19
20namespace clang {
21
22class ASTContext;
23class Decl;
24class DeclGroup;
25class DeclGroupIterator;

--- 127 unchanged lines hidden ---
18#include <cassert>
19
20namespace clang {
21
22class ASTContext;
23class Decl;
24class DeclGroup;
25class DeclGroupIterator;

--- 127 unchanged lines hidden ---