clang API Documentation

ExpressionTraits.h
Go to the documentation of this file.
00001 //===- ExpressionTraits.h - C++ Expression Traits Support Enums -*- C++ -*-===//
00002 //
00003 //                     The LLVM Compiler Infrastructure
00004 //
00005 // This file is distributed under the University of Illinois Open Source
00006 // License. See LICENSE.TXT for details.
00007 //
00008 //===----------------------------------------------------------------------===//
00009 ///
00010 /// \file
00011 /// \brief Defines enumerations for expression traits intrinsics.
00012 ///
00013 //===----------------------------------------------------------------------===//
00014 
00015 #ifndef LLVM_CLANG_BASIC_EXPRESSIONTRAITS_H
00016 #define LLVM_CLANG_BASIC_EXPRESSIONTRAITS_H
00017 
00018 namespace clang {
00019 
00020   enum ExpressionTrait {
00021     ET_IsLValueExpr,
00022     ET_IsRValueExpr
00023   };
00024 }
00025 
00026 #endif