'_IsFirstIteration':std :: lower_bound中未引用的形式参数

时间:2013-07-18 11:26:09

标签: c++ visual-studio-2005 stl-algorithm

尝试使用std :: lower_bound函数时,我收到了着名的C4100警告。

这是我的代码:

typedef std::vector<SDTSPosition> TPTSFileOffsetVector;

TPTSFileOffsetVector::iterator lowest_nearest = std::lower_bound(m_position_table.begin(), 
    m_position_table.end(), SDTSPosition(dts_position, 0), SDTSPosition());

比较器在struct中:

// positioning
struct SDTSPosition
{
    SDTSPosition()      {}

    SDTSPosition(int d, int p)  
    {       
        dts = d;        
        pos = p;
    }
    int dts;
    int pos;

    bool operator()(const SDTSPosition & left, const SDTSPosition & right) const
    {
        return left.dts < right.dts;        
    }   
};

编译警告指出我在stl:

中的代码
template<class _FwdIt,
class _Pr> inline
void __CLRCALL_OR_CDECL _Debug_order_single2(_FwdIt _First, _FwdIt _Last, _Pr _Pred, bool _IsFirstIteration,
    const wchar_t *_File, unsigned int _Line, forward_iterator_tag)
{   // test if _First and ++_First ordered by predicate, forward iterators
if (_First != _Last)
    {
    _FwdIt _Next = _First;
    if (++_Next != _Last)
        if (_DEBUG_LT_PRED(_Pred, *_Next, *_First))
            _DEBUG_ERROR2("sequence not ordered", _File, _Line);
    }
}

其中确实没有对所述布尔变量的引用。

我做错了吗? (顺便说一句是VS2005)

1 个答案:

答案 0 :(得分:1)

起初我会说你没有做错任何事。

在我看来,他们只是忘记使用参数,或者他们无法更新签名而忘记静音此功能的警告。

我不担心。