Deleted Added
full compact
DeclContextInternals.h (198092) DeclContextInternals.h (199482)
1//===-- DeclContextInternals.h - DeclContext Representation -----*- 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 data structures used in the implementation
11// of DeclContext.
12//
13//===----------------------------------------------------------------------===//
14#ifndef LLVM_CLANG_AST_DECLCONTEXTINTERNALS_H
15#define LLVM_CLANG_AST_DECLCONTEXTINTERNALS_H
16
1//===-- DeclContextInternals.h - DeclContext Representation -----*- 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 data structures used in the implementation
11// of DeclContext.
12//
13//===----------------------------------------------------------------------===//
14#ifndef LLVM_CLANG_AST_DECLCONTEXTINTERNALS_H
15#define LLVM_CLANG_AST_DECLCONTEXTINTERNALS_H
16
17#include "clang/AST/DeclBase.h"
17#include "clang/AST/Decl.h"
18#include "clang/AST/DeclarationName.h"
18#include "clang/AST/DeclarationName.h"
19#include "clang/AST/DeclCXX.h"
19#include "llvm/ADT/DenseMap.h"
20#include "llvm/ADT/PointerUnion.h"
21#include "llvm/ADT/SmallVector.h"
22#include <algorithm>
23
24namespace clang {
25
26/// StoredDeclsList - This is an array of decls optimized a common case of only

--- 194 unchanged lines hidden ---
20#include "llvm/ADT/DenseMap.h"
21#include "llvm/ADT/PointerUnion.h"
22#include "llvm/ADT/SmallVector.h"
23#include <algorithm>
24
25namespace clang {
26
27/// StoredDeclsList - This is an array of decls optimized a common case of only

--- 194 unchanged lines hidden ---