STL VS13 C ++:错误C4996未禁用

时间:2015-03-28 12:29:43

标签: c++ stl

我在VS13中有这段代码:

double distance(vector <double> point) {
    return sqrt(inner_product(point[0], point[4], point, 0));
}

int main() {
    vector < double > point {2, 2, 2, 2};
    cout << distance(point);
    cin.get();
}

调用

    error C4996 ('std::_Inner_product2': 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)
 c:\program files\microsoft visual studio 12.0\vc\include\xutility(372): error C2825: '_Iter': must be a class or namespace when followed by '::'
    c:\program files\microsoft visual studio 12.0\vc\include\xutility(372): error C2039: 'value_type' : is not a member of '`global namespace''
    c:\program files\microsoft visual studio 12.0\vc\include\xutility(372): error C2146: syntax error : missing ';' before identifier 'value_type'
    c:\program files\microsoft visual studio 12.0\vc\include\xutility(372): error C2602: 'std::iterator_traits<_InIt>::value_type' is not a member of a base class of 'std::iterator_traits<_InIt>'

我知道这里有很多类似的问题。我还阅读了MSDN上的文档。

结果,我尝试了下一个解决方案:

1)#define _SCL_SECURE_NO_WARNINGS

从过去的评论看起来它似乎有效,但对我来说它会导致一大堆错误,如:

c:\program files\microsoft visual studio 12.0\vc\include\xutility(371): error C2825: '_Iter': must be a class or namespace when followed by '::'

2)

#pragma warning(disable:4996)
#pragma warning(default:4996)

导致相同的错误;

3)项目属性 - &gt;配置属性 - &gt; C / C ++ - &gt;一般 - &gt; SDL检查 - &gt;否。

只是不起作用。

你能看看我是如何禁用该错误的吗?谢谢!

2 个答案:

答案 0 :(得分:1)

我认为你的意思是以下功能

double distance( const std::vector<double> &point ) 
{
    return std::sqrt( std::inner_product( point.begin(), point.end(), point.begin(), 0.0 ) );
}

这是一个示范程序

#include <iostream>
#include <vector>
#include <numeric>
#include <cmath>

double distance( const std::vector<double> &point ) 
{
    return std::sqrt( std::inner_product( point.begin(), point.end(), point.begin(), 0.0 ) );
}

int main()
{ 
    std::vector<double> point = { 2, 2, 2, 2 };

    std::cout << distance( point ) << std::endl;
}

输出

4

答案 1 :(得分:1)

工具 选项 先进

那里有一个警告要禁止的部分   如果我没记错4820; 4996; 4710是三个我总是压制。