20 Jan
2006
20 Jan
'06
10:15 p.m.
-----Original Message----- From: boost-users-bounces@lists.boost.org [mailto:boost-users-bounces@lists.boost.org] On Behalf Of Andy Little
#define POW_EVAL(Num, Float_type)\ template <>\ struct pow_eval< \ Float_type BOOST_PP_COMMA() Num BOOST_PP_COMMA()\ 1 BOOST_PP_COMMA() false\
BTW, all of these BOOST_PP_COMMA()'s here are pointless. Just use commas... Float_type, Num, 1, false. BOOST_PP_COMMA is for programmatic and/or delayed comma creation. Regards, Paul Mensonides