Extending TUPLE_LIMIT to 32

[SVN r14214]
This commit is contained in:
Vesa Karvonen
2002-06-20 15:53:24 +00:00
parent b36731a3d9
commit 1015d853f3

View File

@ -50,16 +50,11 @@
/* List of applicative binary operators. */ /* List of applicative binary operators. */
#define APPLICATIVE_BINARY_OPS\ #define APPLICATIVE_BINARY_OPS\
BOOST_PP_LIST_APPEND\ BOOST_PP_TUPLE_TO_LIST\
( BOOST_PP_TUPLE_TO_LIST\ ( 18\
( 2\
, ( ( * , mul , 1 , 0 , 0 )\ , ( ( * , mul , 1 , 0 , 0 )\
, ( / , div , 1 , 0 , 0 )\ , ( / , div , 1 , 0 , 0 )\
)\ , ( % , mod , 0 , 0 , 0 )\
)\
, BOOST_PP_TUPLE_TO_LIST\
( 16\
, ( ( % , mod , 0 , 0 , 0 )\
, ( + , add , 1 , 0 , 0 )\ , ( + , add , 1 , 0 , 0 )\
, ( - , sub , 1 , 0 , 0 )\ , ( - , sub , 1 , 0 , 0 )\
, ( << , shift_left , 0 , 0 , 1 )\ , ( << , shift_left , 0 , 0 , 1 )\
@ -76,7 +71,6 @@
, ( && , logical_and , 1 , 1 , 0 )\ , ( && , logical_and , 1 , 1 , 0 )\
, ( || , logical_or , 1 , 1 , 0 )\ , ( || , logical_or , 1 , 1 , 0 )\
)\ )\
)\
) )
/* Information about C built-in types. */ /* Information about C built-in types. */