1>------ 已启动生成: 项目: cccccc.c, 配置: Debug Win32 ------
1>cccccc.c.cpp
1>e:\windows kits\10\include\10.0.17763.0\ucrt\stdio.h(1): fatal error C1014: 包含文件太多: 深度 = 1024
1>已完成生成项目“cccccc.c.vcxproj”的操作 - 失败。
========== 生成: 成功 0 个,失败 1 个,最新 0 个,跳过 0 个 ==========
参考 fatal error C1014: too many include files : depth = 1024 的回答:
The easiest way to fix your problem is at the top of all of your header files add:
#pragma once
好的,谢谢大佬!