我试图从Boost.Preprocessor库中编译一个示例,它是:
#include <boost/preprocessor/seq/insert.hpp>
#define SEQ (a)(b)(d)
BOOST_PP_SEQ_INSERT(SEQ, 2, c) // expands to (a)(b)(c)(d)
在 Visual Studio 2008 上,我得到了错误error C2065: 'b' : undeclared identifier
样品有问题还是我遗漏了什么?
请注意:序列定义本身是可以的。为了证明这一点,我编译了这段代码:
#include <boost/preprocessor/cat.hpp>
#include <boost/preprocessor/seq/for_each.hpp>
#define SEQ (w)(x)
#define MACRO(r, data, elem) BOOST_PP_CAT(elem, data)
struct w_
{
int x;
};
void test()
{
BOOST_PP_SEQ_FOR_EACH(MACRO, _, SEQ);
x_.x = 3;
}
免责声明:此代码是 WTF 代码,我从未打算像这样使用 BOOST PP :-)