Deleted Added
full compact
DeltaTree.h (243830) DeltaTree.h (280031)
1//===--- DeltaTree.h - B-Tree for Rewrite Delta tracking --------*- 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 DeltaTree class.
11//
12//===----------------------------------------------------------------------===//
13
1//===--- DeltaTree.h - B-Tree for Rewrite Delta tracking --------*- 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 DeltaTree class.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef CLANG_REWRITE_DELTATREE_H
15#define CLANG_REWRITE_DELTATREE_H
14#ifndef LLVM_CLANG_REWRITE_CORE_DELTATREE_H
15#define LLVM_CLANG_REWRITE_CORE_DELTATREE_H
16
17#include "llvm/Support/Compiler.h"
18
19namespace clang {
20
21 /// DeltaTree - a multiway search tree (BTree) structure with some fancy
22 /// features. B-Trees are generally more memory and cache efficient than
23 /// binary trees, because they store multiple keys/values in each node. This

--- 27 unchanged lines hidden ---
16
17#include "llvm/Support/Compiler.h"
18
19namespace clang {
20
21 /// DeltaTree - a multiway search tree (BTree) structure with some fancy
22 /// features. B-Trees are generally more memory and cache efficient than
23 /// binary trees, because they store multiple keys/values in each node. This

--- 27 unchanged lines hidden ---