checker type doesn't work, try event type

Change-Id: I8b92c583bf1d6167b713648f417ba5569b3593ba
This commit is contained in:
Caolán McNamara
2014-11-03 08:53:46 +00:00
parent 2d5130ebab
commit 7f3326f2aa

View File

@@ -63,7 +63,7 @@ Fraction::Fraction( double dVal )
bool Fraction::HasOverflowValue()
{
//coverity[constant_expression_result]
//coverity[result_independent_of_operands]
return value.numerator() < std::numeric_limits<long>::min() ||
value.numerator() > std::numeric_limits<long>::max() ||
value.denominator() < std::numeric_limits<long>::min() ||