0

我将此代码与std=c++14and一起使用gcc7.3

#include <iostream>
#include <string>
#include <type_traits>
#include <boost/hana/assert.hpp>
#include <boost/hana/equal.hpp>
#include <boost/hana/type.hpp>
namespace hana = boost::hana;

template<class T>
bool foo(T elem)
{
    constexpr auto has_overload_to_string = hana::is_valid([](auto t) -> decltype(to_string(t)) {});
    constexpr bool hasOverloadTo_string = has_overload_to_string(elem);
    return hasOverloadTo_string;
}

int main()
{ 
    std::string elem;
    std::cin >> elem;
    foo(elem);
}  

它工作正常:演示

如果现在我使用 gcc10.1,我得到这个错误:demo fail

prog.cc: In instantiation of 'bool foo(T) [with T = std::__cxx11::basic_string<char>]':
prog.cc:41:13:   required from here
prog.cc:27:38: error: temporary of non-literal type 'foo<std::__cxx11::basic_string<char> >::<lambda(auto:1)>' in a constant expression
   27 |      [[maybe_unused]] constexpr auto has_overload_to_string =
      |                                      ^~~~~~~~~~~~~~~~~~~~~~
prog.cc:28:21: note: 'foo<std::__cxx11::basic_string<char> >::<lambda(auto:1)>' is not literal because:
   28 |      hana::is_valid([](auto t) -> decltype(to_string(t)) {});
      |                     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
cc1plus: note:   'foo<std::__cxx11::basic_string<char> >::<lambda(auto:1)>' is a closure type, which is only literal in C++17 and later 

我的问题是:gcc7.3 是否对 C++14 过于宽容,并且is_valid在不应该使用的情况下工作,或者 gcc8 以及更多添加 C++14 的错误?

4

1 回答 1

2

该错误与 无关hana::is_valid,但 lambda 在 C++14 中的常量表达式中无效。

这里已经有一个很好的语言律师回答: https ://stackoverflow.com/a/32697323/800347

Clang 也一直提供一个错误,所以很明显以前版本的 gcc 在允许这个方面是不正确的。

要解决此问题,只需删除constexpr变量声明的限定符。

于 2020-09-23T17:28:10.520 回答