We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65c5ede commit 172f094Copy full SHA for 172f094
1 file changed
Sources/NodeEngine/NE_Localization.hpp
@@ -47,7 +47,7 @@ template<typename... Args>
47
std::wstring FormatString (const std::wstring& format, Args... args)
48
{
49
wchar_t resultString[2048];
50
- swprintf_s (resultString, 2048, format.c_str (), args...);
+ swprintf (resultString, 2048, format.c_str (), args...);
51
return std::wstring (resultString);
52
}
53
0 commit comments