Error C4996 received when compiling sqlite.c in Visual Studio 2013

后端 未结 5 1748
生来不讨喜
生来不讨喜 2020-12-23 21:49

I ported my project over from Visual Studio 2012 to 2013 and sqlite.c will not compile in it. I\'m receiving this compile-time error:

error C4996: \'GetVersi         


        
5条回答
  •  借酒劲吻你
    2020-12-23 22:18

    I had the same issue and I just excluded sqlite3.c and sqlite3.h from project (in Solution Explorer right click on them and select Exclude From Project) and then included again (right click on them again and select Include In Project). And now it works...

提交回复
热议问题