mirror of
https://github.com/godotengine/godot.git
synced 2024-11-27 09:16:35 +08:00
Fix build warning in ustring.cpp on Windows/MSVC platform
This commit is contained in:
parent
d1bce5c679
commit
8674655a45
@ -28,6 +28,10 @@
|
||||
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
||||
/*************************************************************************/
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#define _CRT_SECURE_NO_WARNINGS // to disable build-time warning which suggested to use strcpy_s instead strcpy
|
||||
#endif
|
||||
|
||||
#include "ustring.h"
|
||||
|
||||
#include "core/color.h"
|
||||
|
Loading…
Reference in New Issue
Block a user