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

2024-05-12

当我编译代码时,错误指向以下类。该错误在两行上突出显示,如下所示: 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
};

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

本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

致命错误 C1001:编译器中发生内部错误(编译器文件“msc1.cpp”,第 1325 行) 的相关文章

随机推荐