2

我试图从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 :-)

4

1 回答 1

1

好吧,您正在尝试编译包含以下内容的源文件:

(a)(b)(c)(d)

我想你应该把它放在这个代码有意义的上下文中,或者只运行预处理器(不编译结果)。

于 2010-10-20T13:27:21.140 回答