本文介绍了致命错误 C1001:编译器中发生内部错误(编译器文件“msc1.cpp",第 1325 行)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
当我编译代码时,错误指向以下类.该错误在以下两行中突出显示:tm validFrom{};tm validUntil{};
When i compiled the code the error pointing to the following class . The error is higlighted on two lines as below : 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
};
推荐答案
我在共享代码中没有看到任何错误,您应该转到设置"并更改优化设置(如果可以,请禁用它).偶尔会出现此错误.
i don't see any errors in shared code, you should go to "Settings" and change the optimization settings (disable it, if you can). This error occurs once in a while.
这篇关于致命错误 C1001:编译器中发生内部错误(编译器文件“msc1.cpp",第 1325 行)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!