Deleted Added
full compact
StmtIterator.h (218893) StmtIterator.h (221345)
1//===--- StmtIterator.h - Iterators for Statements --------------*- 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//===----------------------------------------------------------------------===//

--- 4 unchanged lines hidden (view full) ---

13
14#ifndef LLVM_CLANG_AST_STMT_ITR_H
15#define LLVM_CLANG_AST_STMT_ITR_H
16
17#include "llvm/Support/DataTypes.h"
18#include <cassert>
19#include <cstddef>
20#include <iterator>
1//===--- StmtIterator.h - Iterators for Statements --------------*- 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//===----------------------------------------------------------------------===//

--- 4 unchanged lines hidden (view full) ---

13
14#ifndef LLVM_CLANG_AST_STMT_ITR_H
15#define LLVM_CLANG_AST_STMT_ITR_H
16
17#include "llvm/Support/DataTypes.h"
18#include <cassert>
19#include <cstddef>
20#include <iterator>
21#include <utility>
21
22namespace clang {
23
24class Stmt;
25class Decl;
26class VariableArrayType;
27
28class StmtIteratorBase {

--- 203 unchanged lines hidden ---
22
23namespace clang {
24
25class Stmt;
26class Decl;
27class VariableArrayType;
28
29class StmtIteratorBase {

--- 203 unchanged lines hidden ---