Boost中Core模块的ignore_unused用法

头文件

boost/core/ignore_unused.hpp

作用

C++中,没有使用的变量,在编译期间,会出现警告,ingnore_unused就是解决这一问题的。

举例

#include <boost/core/ignore_unused.hpp>

BOOST_CXX14_CONSTEXPR int test_fun(int a)
{
    boost::ignore_unused(a);
    return 0;
}

int main()
{
    {
        int a;
        boost::ignore_unused(a);
    }
    {
        int a, b;
        boost::ignore_unused(a, b);
    }
    {
        int a, b, c;
        boost::ignore_unused(a, b, c);
    }
    {
        int a, b, c, d;
        boost::ignore_unused(a, b, c, d);
    }
    {
        int a, b, c, d, e;
        boost::ignore_unused(a, b, c, d, e);
    }

    {
        typedef int a;
        boost::ignore_unused<a>();
    }
    {
        typedef int a;
        typedef int b;
        boost::ignore_unused<a, b>();
    }
    {
        typedef int a;
        typedef int b;
        typedef int c;
        boost::ignore_unused<a, b, c>();
    }
    {
        typedef int a;
        typedef int b;
        typedef int c;
        typedef int d;
        boost::ignore_unused<a, b, c, d>();
    }
    {
        typedef int a;
        typedef int b;
        typedef int c;
        typedef int d;
        typedef int e;
        boost::ignore_unused<a, b, c, d, e>();
    }

    {
        BOOST_CXX14_CONSTEXPR const int a = test_fun(0);
        boost::ignore_unused(a);
    }

    return 0;
}

源代码

namespace boost {
template <typename... Ts>
BOOST_FORCEINLINE BOOST_CXX14_CONSTEXPR void ignore_unused(Ts const& ...)
{}

template <typename... Ts>
BOOST_FORCEINLINE BOOST_CXX14_CONSTEXPR void ignore_unused()
{}
}

猜你喜欢

转载自blog.csdn.net/zhangxiong1985/article/details/84431016