Fix stats incompatibility with g++ 3.4.

base/statistics.hh:
    Get rid of operator%... g++ 3.4 complains that this isn't defined
    for doubles (which makes sense).  We never use it anyway.

--HG--
extra : convert_revision : 3ca724e1cc42559226549835f6cd3509308e02ca
This commit is contained in:
Steve Reinhardt 2005-03-01 00:41:19 -05:00
parent 58c29640b7
commit ddcec6a6f5

View file

@ -2872,12 +2872,6 @@ operator/(Temp l, Temp r)
return NodePtr(new BinaryNode<std::divides<Result> >(l, r));
}
inline Temp
operator%(Temp l, Temp r)
{
return NodePtr(new BinaryNode<std::modulus<Result> >(l, r));
}
inline Temp
operator-(Temp l)
{