gpt4 book ai didi

c++ - 使用嵌套模板变量解决 Visual Studio 内部编译器错误

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:37:22 24 4
gpt4 key购买 nike

我正在尝试编写可以让我对函数的参数类型进行索引的代码:

template <typename R, typename... ARGS>
R function_return(R(*)(ARGS...));

template <typename R, typename... ARGS>
std::tuple<ARGS...> function_parameters(R(*)(ARGS...));

template <int I, typename T>
using get_type = typename std::conditional_t<(I < 0), std::tuple_element<static_cast<int>(std::tuple_size_v<T>) + I, T>, std::tuple_element<I, T>>::type;

template <int I, typename T>
using parameter_type = get_type<I, decltype(function_parameters(std::declval<T>()))>;

Live Example (ICE under VS) Live Example (working on GCC)

但是当我尝试在 上使用它时我收到内部编译器错误:

fatal error C1001: An internal error has occurred in the compiler.

有没有其他方法可以解决内部编译器错误?

最佳答案

这可能取决于 VS2017 的确切(子)版本,因为我的代码不会生成 ICE。但是,该代码仍然存在问题,因为它可能会实例化 std::tuple_element<2147483647, T>或类似的东西。您需要确保只评估正确的分支。替换您对 get_type 的定义有了这个:

template <int I, typename T, bool negative = (I < 0)>
struct get_type_impl;

template <int I, typename T>
struct get_type_impl<I, T, true>
{
using type = typename std::tuple_element<static_cast<int>(std::tuple_size<T>::value) + I, T>::type;
};

template <int I, typename T>
struct get_type_impl<I, T, false>
{
using type = typename std::tuple_element<I, T>::type;
};

template <int I, typename T>
using get_type = typename get_type_impl<I, T>::type;

这适用于我的 VS 2017(cl 版本 19.12)

关于c++ - 使用嵌套模板变量解决 Visual Studio 内部编译器错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56379486/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com