你好我在C中的Boost.Preprocessor有问题。我相信C ++和C宏的行为完全相同所以使用Boost.Preprocessor在C中很好,无论如何我打算做一个小的完全预处理器库。我的问题是我无法使用BOOST_PP_EQUAL
编译一个小程序。以下是您可以构建的示例代码:
#include <stdlib.h>
#include <stdio.h>
#include <boost/preprocessor.hpp>
#define TUPLE (0,1,2)
#define IS_NON_ZERO(NODE) BOOST_PP_EQUAL(BOOST_PP_TUPLE_SIZE(NODE),0)
int main(void)
{
int x;
x = IS_NON_ZERO(TUPLE);
printf("result: %d\n",x);
return EXIT_SUCCESS;
}
我使用了clang和gcc,两人都告诉我宏BOOST_PP_NOT_EQUALS不存在!
tiny.c:6:27: error: ‘BOOST_PP_NOT_EQUAL_0’ undeclared (first use in this function)
我的代码出了什么问题?提前谢谢!
编辑:这是使用-E
标志的非宏行。
x = BOOST_PP_COMPL_BOOST_PP_NOT_EQUAL_CHECK_BOOST_PP_NOT_EQUAL_BOOST_PP_TUPLE_SIZE((0,1,2))(0, BOOST_PP_NOT_EQUAL_0);
到底是什么?
答案 0 :(得分:4)
将-DBOOST_PP_VARIADICS=1
传递给您的编译器。