GCC与微软创业投资公司(非工作)的不同求职行为

2022-05-16 00:00:00 gcc visual-c++ language-lawyer c++ c++20

考虑以下代码:

#include <cstdint>
#include <vector>

class ClassT
{
public:
    consteval static size_t GetSize()
    {
        return sizeof(int);
    }

    void Resize()
    {
        _Data.resize(GetSize(), 0);
    }

    std::vector<uint8_t> _Data;
};

int main()
{
    ClassT Object;
    Object.Resize();

    return 0;
}

GCC编译成功,但msvc提示错误:

error C7595: 'ClassT::GetSize': call to immediate function is not a constant expression

我错过了什么吗?或者这真的是MSVC错误?

编译器版本:x86-64 gcc 10.2x64 msvc v19.28。(Link to godbolt)

msvc

这看起来像推荐答案错误。它甚至可能与现有的这个相同-#1224555。

最小示例:

consteval int test() { return 0; }

int main() {
    return test(); // error C7595: 'test': call to immediate function is not a constant expression
}

相关文章