Deleted Added
full compact
MacroBuilder.h (239462) MacroBuilder.h (249423)
1//===--- MacroBuilder.h - CPP Macro building utility ------------*- 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/// \file
11/// \brief Defines the clang::MacroBuilder utility class.
12///
13//===----------------------------------------------------------------------===//
14
15#ifndef LLVM_CLANG_BASIC_MACROBUILDER_H
16#define LLVM_CLANG_BASIC_MACROBUILDER_H
17
1//===--- MacroBuilder.h - CPP Macro building utility ------------*- 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/// \file
11/// \brief Defines the clang::MacroBuilder utility class.
12///
13//===----------------------------------------------------------------------===//
14
15#ifndef LLVM_CLANG_BASIC_MACROBUILDER_H
16#define LLVM_CLANG_BASIC_MACROBUILDER_H
17
18#include "clang/Basic/LLVM.h"
18#include "llvm/ADT/Twine.h"
19#include "llvm/Support/raw_ostream.h"
20
21namespace clang {
22
23class MacroBuilder {
24 raw_ostream &Out;
25public:

--- 22 unchanged lines hidden ---
19#include "llvm/ADT/Twine.h"
20#include "llvm/Support/raw_ostream.h"
21
22namespace clang {
23
24class MacroBuilder {
25 raw_ostream &Out;
26public:

--- 22 unchanged lines hidden ---