c – swprintf和vswprintf未声明?

前端之家收集整理的这篇文章主要介绍了c – swprintf和vswprintf未声明?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用MinGW在 Windows上编译Botan,并且在编译期间收到以下错误
c:\qt\2010.04\mingw\bin\../lib/gcc/mingw32/4.4.0/include/c++/cwchar:159: error:
'::swprintf' has not been declared
c:\qt\2010.04\mingw\bin\../lib/gcc/mingw32/4.4.0/include/c++/cwchar:166: error:
'::vswprintf' has not been declared

为什么没有声明swprintf和vswprintf,我该如何解决

解决方法

尝试放入
#undef __STRICT_ANSI__

之前包括stdio.h

原文链接:https://www.f2er.com/c/113958.html

猜你在找的C&C++相关文章