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 //  This file defines enumerations for expression traits intrinsics.
00011 //
00012 //===----------------------------------------------------------------------===//
00013 
00014 #ifndef LLVM_CLANG_EXPRESSIONTRAITS_H
00015 #define LLVM_CLANG_EXPRESSIONTRAITS_H
00016 
00017 namespace clang {
00018 
00019   enum ExpressionTrait {
00020     ET_IsLValueExpr,
00021     ET_IsRValueExpr
00022   };
00023 }
00024 
00025 #endif