Skip to content

Commit

Permalink
Re #6267. Filter should be [min,max], not [min,max).
Browse files Browse the repository at this point in the history
  • Loading branch information
RussellTaylor committed Dec 4, 2012
1 parent d35e4f7 commit 0aa7d3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Code/Mantid/Framework/Kernel/src/TimeSeriesProperty.cpp
Expand Up @@ -474,7 +474,7 @@ namespace Mantid
TYPE val = m_values[i].value();

//A good value?
const bool isGood = ((val >= min) && (val < max));
const bool isGood = ((val >= min) && (val <= max));
if (isGood)
numgood++;

Expand Down

0 comments on commit 0aa7d3d

Please sign in to comment.