C2338 static_assert failed: 'va_start argument must not have reference type and must not be parenthesized' EPSTPwdManager D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.34.31933\include\vadefs.h 194
时间: 2023-07-09 16:54:58 浏览: 637
这个错误是因为你在使用 `va_start` 函数时,传入了一个引用类型的参数或者括号括起来的参数。`va_start` 函数的第二个参数应该是一个可变参数的最后一个确定类型的参数,不能是引用类型,也不能使用括号括起来。你需要检查一下你代码中使用 `va_start` 的地方,看看有没有这样的问题,并进行修改。
阅读全文