致命错误C1001:编译器发生内部错误(编译器文件'msc1.cpp',第1325行)

问题描述 投票:3回答:2

当我编译代码时,错误指向下面的类。错误在两行上突出显示如下:tm validFrom {}; tm validUntil {};

struct t_SslCertData final
{
    struct t_Contact
    {
        TCHAR Organization[256];
        TCHAR Unit[256];
        TCHAR CommonName[256];
        TCHAR Mail[256];
        TCHAR Country[256];
        TCHAR StateProvince[256];
        TCHAR Town[256];
        TCHAR Other[1024];
    } subject, issuer;



//Below are the lines where compiler highlights the error

    tm validFrom{};
    tm validUntil{};

    unsigned char hash[20];

    int verificationResult;
    int verificationDepth;

    int priv_data; //Internal data, do not modify
};
c++ visual-studio-2013
2个回答
3
投票

我没有看到共享代码中的任何错误,您应该转到“设置”并更改优化设置(如果可以,请禁用它)。偶尔会发生此错误。


0
投票

试试这个:重新定位解决方案

当我用自己的代码编译虚幻引擎4时,我遇到了这个问题。我需要做很多工作才能搞清楚。

最新的IDE很好。 vs2017和vs2019都安装得很好。你的Windows环境很好。超频的CPU很好。

顺便说一句,我解决了这个问题,我猜你的解决方案中的项目是windows SDK,彼此不同会导致“编译器内部错误”。

© www.soinside.com 2019 - 2024. All rights reserved.