error C4996: 'ctime': This function or variable may be unsafe

后端 未结 5 1094
灰色年华
灰色年华 2020-12-09 21:45

I have a large project about static source code analysis, and everything compiles successfully, except for one thing. I have provided the error message in the title. The poi

5条回答
  •  难免孤独
    2020-12-09 22:18

    If you're sure no safety issues in your code, you can disable this by #pragma warning(disable : 4996).

提交回复
热议问题