Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 vs2012 中,我运行我的程序,它会提示error C4996: 'cv::flann::Index_<T>'. 但是在vs2010中,是Warning。
error C4996: 'cv::flann::Index_<T>'
谁能告诉我如何解决这个问题?
我知道C4996作为一个编译器警告声明某些东西已被弃用。但我不知道这里是否是这种情况,因为我只是将它作为警告而不是作为错误遇到。
C4996
但是,您可以尝试#define _CRT_SECURE_NO_DEPRECATE在您的代码中使用,如本答案中所建议的那样。
#define _CRT_SECURE_NO_DEPRECATE