Deleted Added
full compact
OperationKinds.h (276479) OperationKinds.h (280031)
1//===- OperationKinds.h - Operation enums -----------------------*- 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 enumerates the different kinds of operations that can be
11// performed by various expressions.
12//
13//===----------------------------------------------------------------------===//
14
1//===- OperationKinds.h - Operation enums -----------------------*- 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 enumerates the different kinds of operations that can be
11// performed by various expressions.
12//
13//===----------------------------------------------------------------------===//
14
15#ifndef LLVM_CLANG_AST_OPERATION_KINDS_H
16#define LLVM_CLANG_AST_OPERATION_KINDS_H
15#ifndef LLVM_CLANG_AST_OPERATIONKINDS_H
16#define LLVM_CLANG_AST_OPERATIONKINDS_H
17
18namespace clang {
19
20/// CastKind - The kind of operation required for a conversion.
21enum CastKind {
22 /// CK_Dependent - A conversion which cannot yet be analyzed because
23 /// either the expression or target type is dependent. These are
24 /// created only for explicit casts; dependent ASTs aren't required

--- 331 unchanged lines hidden ---
17
18namespace clang {
19
20/// CastKind - The kind of operation required for a conversion.
21enum CastKind {
22 /// CK_Dependent - A conversion which cannot yet be analyzed because
23 /// either the expression or target type is dependent. These are
24 /// created only for explicit casts; dependent ASTs aren't required

--- 331 unchanged lines hidden ---