VS2013下出现'std::_Copy_impl': Function call with parameters that may be unsafe

出现这样的 ‘std::_Copy_impl’: Function call 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’错误

这个我纠结了很久,解决方案为在
VS2013下出现'std::_Copy_impl': Function call with parameters that may be unsafe
VS2013下出现'std::_Copy_impl': Function call with parameters that may be unsafe

这一栏里面加上
_SCL_SECURE_NO_WARNINGS

就能编译成功。