Deleted Added
full compact
OperatorPrecedence.h (249423) OperatorPrecedence.h (280031)
1//===--- OperatorPrecedence.h - Operator precedence levels ------*- 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 and computes precedence levels for binary/ternary operators.
12///
13//===----------------------------------------------------------------------===//
14
1//===--- OperatorPrecedence.h - Operator precedence levels ------*- 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 and computes precedence levels for binary/ternary operators.
12///
13//===----------------------------------------------------------------------===//
14
15#ifndef LLVM_CLANG_OPERATOR_PRECEDENCE_H
16#define LLVM_CLANG_OPERATOR_PRECEDENCE_H
15#ifndef LLVM_CLANG_BASIC_OPERATORPRECEDENCE_H
16#define LLVM_CLANG_BASIC_OPERATORPRECEDENCE_H
17
18#include "clang/Basic/TokenKinds.h"
19
20namespace clang {
21
22/// PrecedenceLevels - These are precedences for the binary/ternary
23/// operators in the C99 grammar. These have been named to relate
24/// with the C99 grammar productions. Low precedences numbers bind

--- 28 unchanged lines hidden ---
17
18#include "clang/Basic/TokenKinds.h"
19
20namespace clang {
21
22/// PrecedenceLevels - These are precedences for the binary/ternary
23/// operators in the C99 grammar. These have been named to relate
24/// with the C99 grammar productions. Low precedences numbers bind

--- 28 unchanged lines hidden ---