gpt4 book ai didi

c++ - 隐式转换产生 "error: taking address of temporary"(GCC vs clang)

转载 作者:塔克拉玛干 更新时间:2023-11-03 02:14:21 27 4
gpt4 key购买 nike

在试验强类型整数时,我遇到了一个来自 GCC 8.2 的奇怪错误:

error: taking address of temporary

我可以想象上述错误有意义的典型场景,但在我的情况下我没有遇到问题。重现错误的缩小(人为)示例如下:

#include <cstddef>

#include <type_traits>

enum class Enum : std::size_t {};

struct Pod {
std::size_t val;

constexpr operator Enum() const {
return static_cast<Enum>(val);
}
};

template<std::size_t N>
constexpr void foo() {
using Foo = std::integral_constant<Enum, Pod{N}>;
// [GCC] error: taking address of temporary [-fpermissive]
}

int main() {
foo<2>();
}

为什么 GCC 8.2 在这里提示?Clang 6.0 很高兴(see goldbolt.org)。

请注意,GCC 的第二个错误可能有助于分析问题。我也不明白:

error: no matching function for call to Pod::operator Enum(Pod*)

GCC 8.2 读取的完整输出

<source>: In instantiation of 'constexpr void foo() [with long unsigned int N = 2]':

<source>:22:10: required from here

<source>:17:50: error: taking address of temporary [-fpermissive]

using Foo = std::integral_constant<Enum, Pod{N}>;

^

<source>:17:50: error: no matching function for call to 'Pod::operator Enum(Pod*)'

<source>:10:13: note: candidate: 'constexpr Pod::operator Enum() const'

constexpr operator Enum() const {

^~~~~~~~

<source>:10:13: note: candidate expects 0 arguments, 1 provided

Compiler returned: 1

最佳答案

这显然是一个错误; 'Pod::operator Enum(Pod*)' 是胡说八道。您不能将参数传递给 operator Enum

编译器似乎认为在编译时将 Foo 转换为 Enum 的正确操作是 foo.operator Enum(&foo) 什么的。这都解释了“临时地址”和下一行。

关于c++ - 隐式转换产生 "error: taking address of temporary"(GCC vs clang),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52054316/

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