浏览代码

Fix build warning in ustring.cpp on Windows/MSVC platform

Yuri Roubinsky 5 年之前
父节点
当前提交
8674655a45
共有 1 个文件被更改,包括 4 次插入0 次删除
  1. 4 0
      core/ustring.cpp

+ 4 - 0
core/ustring.cpp

@@ -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"