
17 Jun
2005
17 Jun
'05
1:16 p.m.
Paul Mensonides wrote:
I saw your first message, but I don't have adequate time until this weekend. I don't have access to an AIX system, so solving this problem will require your help. As an initial test, what is the result [of preprocessing]...
#include <boost/preprocessor/seq/size.hpp>
BOOST_PP_SEQ_SIZE( (1)(2)(3)(nil) ) // 4 BOOST_PP_SEQ_SIZE( (1)(2)(nil) ) // 3 BOOST_PP_SEQ_SIZE( (1)(nil) ) // 2 BOOST_PP_SEQ_SIZE( (nil) ) // 1
The result of preprocessing this is <result> #line 3 "seq.cpp" 4 3 2 1 </result> So so far the PP lib on vacpp seems to work.