原文地址:https://blog.csdn.net/x356982611/article/details/53735830
运行PCL1.8程序的时候,遇到关于内存问题,
error C4996: 'std::uninitialized_copy::_Unchecked_iterators::_Deprecate': Call to 'std::uninitialized_copy' with parameters that may be unsafe - this call relies on the caller to check that the passed values are correct. To disable this warning, use -D_SCL_SECURE_NO_WARNINGS. See documentation on how to use Visual C++ 'Checked Iterators'
解决方法
在stdafx.h中添加一宏定义
#define _SCL_SECURE_NO_WARNINGS
或者
属性-> c/c++ -> 预处理器 -> 预处理器定义 里添加
_SCL_SECURE_NO_WARNINGS
参考上面之后,成功运行,特记录