27 Sep
2002
27 Sep
'02
5:23 a.m.
Hi,all, In file suffix.hpp there are lines: #define BOOST_JOIN( X, Y ) BOOST_DO_JOIN( X, Y ) #define BOOST_DO_JOIN( X, Y ) BOOST_DO_JOIN2(X,Y) #define BOOST_DO_JOIN2( X, Y ) X##Y why donot we define such macro instead: #define BOOST_JOIN( X, Y ) X##Y thanks in advance.