Boost.preprocessor:BOOST_PP_EQUAL无效

时间:2014-05-08 16:34:45

标签: c++ c boost c-preprocessor boost-preprocessor

你好我在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);

到底是什么?

1 个答案:

答案 0 :(得分:4)

-DBOOST_PP_VARIADICS=1传递给您的编译器。