Deleted Added
full compact
PointerLikeTypeTraits.h (208954) PointerLikeTypeTraits.h (218893)
1//===- llvm/Support/PointerLikeTypeTraits.h - Pointer Traits ----*- 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 PointerLikeTypeTraits class. This allows data
11// structures to reason about pointers and other things that are pointer sized.
12//
13//===----------------------------------------------------------------------===//
14
15#ifndef LLVM_SUPPORT_POINTERLIKETYPETRAITS_H
16#define LLVM_SUPPORT_POINTERLIKETYPETRAITS_H
17
1//===- llvm/Support/PointerLikeTypeTraits.h - Pointer Traits ----*- 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 PointerLikeTypeTraits class. This allows data
11// structures to reason about pointers and other things that are pointer sized.
12//
13//===----------------------------------------------------------------------===//
14
15#ifndef LLVM_SUPPORT_POINTERLIKETYPETRAITS_H
16#define LLVM_SUPPORT_POINTERLIKETYPETRAITS_H
17
18#include "llvm/System/DataTypes.h"
18#include "llvm/Support/DataTypes.h"
19
20namespace llvm {
21
22/// PointerLikeTypeTraits - This is a traits object that is used to handle
23/// pointer types and things that are just wrappers for pointers as a uniform
24/// entity.
25template <typename T>
26class PointerLikeTypeTraits {

--- 55 unchanged lines hidden ---
19
20namespace llvm {
21
22/// PointerLikeTypeTraits - This is a traits object that is used to handle
23/// pointer types and things that are just wrappers for pointers as a uniform
24/// entity.
25template <typename T>
26class PointerLikeTypeTraits {

--- 55 unchanged lines hidden ---