Deleted Added
full compact
TokenRewriter.h (276479) TokenRewriter.h (280031)
1//===--- TokenRewriter.h - Token-based Rewriter -----------------*- 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 TokenRewriter class, which is used for code
11// transformations.
12//
13//===----------------------------------------------------------------------===//
14
1//===--- TokenRewriter.h - Token-based Rewriter -----------------*- 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 TokenRewriter class, which is used for code
11// transformations.
12//
13//===----------------------------------------------------------------------===//
14
15#ifndef LLVM_CLANG_TOKENREWRITER_H
16#define LLVM_CLANG_TOKENREWRITER_H
15#ifndef LLVM_CLANG_REWRITE_CORE_TOKENREWRITER_H
16#define LLVM_CLANG_REWRITE_CORE_TOKENREWRITER_H
17
18#include "clang/Basic/SourceLocation.h"
19#include "clang/Lex/Token.h"
20#include <list>
21#include <map>
22#include <memory>
23
24namespace clang {

--- 55 unchanged lines hidden ---
17
18#include "clang/Basic/SourceLocation.h"
19#include "clang/Lex/Token.h"
20#include <list>
21#include <map>
22#include <memory>
23
24namespace clang {

--- 55 unchanged lines hidden ---