summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-11-03 08:53:46 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-11-03 20:44:52 +0000
commit7f3326f2aa37f16dbf12844895d269dec5ad8c45 (patch)
tree655cf7ca83abe1a2b307b071b5e60e3239286fec /tools
parent2d5130ebab13fb94b07950a03b7051825b3d5b15 (diff)
checker type doesn't work, try event type
Change-Id: I8b92c583bf1d6167b713648f417ba5569b3593ba
Diffstat (limited to 'tools')
-rw-r--r--tools/source/generic/fract.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/source/generic/fract.cxx b/tools/source/generic/fract.cxx
index f3f7d2385f0f..4d89b97f2b81 100644
--- a/tools/source/generic/fract.cxx
+++ b/tools/source/generic/fract.cxx
@@ -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() ||