1

一个代码片段说的不止几段:

#include <boost/hana/fwd/eval_if.hpp>
#include <boost/hana/core/is_a.hpp>                                                                                                                                       
#include <iostream>
#include <functional>

using namespace boost::hana;

template<class arg_t>
decltype(auto) f2(arg_t const& a)
{
    constexpr bool b = is_a<std::reference_wrapper<std::string>,
                            arg_t>;

    auto wrapper_case = [&a](auto _) -> std::string&
                        { return _(a).get(); };

    auto default_case = [&a]() -> arg_t const&
                        { return a; };

    return eval_if(b, wrapper_case, default_case);
}

int main()
{
    int a = 3;
    std::string str = "hi!";
    auto str_ref = std::ref(str);

    std::cout << f2(a) << ", " << f2(str) << ", " << f2(str_ref)
              << std::endl;
}

编译器错误是:

$> g++ -std=c++14 main.cpp
main.cpp: In instantiation of ‘decltype(auto) f2(const arg_t&) [with arg_t = int]’:
main.cpp:42:22:   required from here
main.cpp:31:19: error: use of ‘constexpr decltype(auto) boost::hana::eval_if_t::operator()(Cond&&, Then&&, Else&&) const [with Cond = const bool&; Then = f2(const arg_t&) [with arg_t = int]::<lambda(auto:1)>&; Else = f2(const arg_t&) [with arg_t = int]::<lambda(auto:2)>&]’ before deduction of ‘auto’
     return eval_if(b, wrapper_case, default_case);
            ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

没有递归,我使用 gcc-6.0.2,它可能已经解决了一些错误,decltype(auto)并且具有完整的 C++14 实现,并且也符合boost::hana要求,所以,我的错误必须在我的实现中,但我不知道错误是什么。

注意:clang++ 3.8.0 会引发类似的编译器错误。

4

1 回答 1

7

首先,如果路径不明确,boost/hana/fwd/eval_if.hpp则只是前向声明。如果您想认真使用它,则需要包含整个内容,即boost/hana/eval_if.hpp. 这就是原始错误的原因。

那么,这bool是错误的:

constexpr bool b = is_a<std::reference_wrapper<std::string>,
                        arg_t>;

强制它bool意味着该类型不再携带值信息。使用auto.

于 2017-05-26T18:14:12.433 回答