Deleted Added
full compact
Compression.h (276479) Compression.h (280031)
1//===-- llvm/Support/Compression.h ---Compression----------------*- 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 contains basic functions for compression/uncompression.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_SUPPORT_COMPRESSION_H
15#define LLVM_SUPPORT_COMPRESSION_H
16
1//===-- llvm/Support/Compression.h ---Compression----------------*- 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 contains basic functions for compression/uncompression.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_SUPPORT_COMPRESSION_H
15#define LLVM_SUPPORT_COMPRESSION_H
16
17#include "llvm/ADT/SmallVector.h"
17#include "llvm/Support/DataTypes.h"
18#include <memory>
18#include "llvm/Support/DataTypes.h"
19#include <memory>
19#include "llvm/ADT/SmallVector.h"
20
21namespace llvm {
22
23class StringRef;
24
25namespace zlib {
26
27enum CompressionLevel {

--- 32 unchanged lines hidden ---
20
21namespace llvm {
22
23class StringRef;
24
25namespace zlib {
26
27enum CompressionLevel {

--- 32 unchanged lines hidden ---