Skip to content

Commit 40b7554

Browse files
Errata refactor.
1 parent 233e4c1 commit 40b7554

14 files changed

+602
-485
lines changed

Diff for: code/include/swoc/DiscreteRange.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ template<typename T> class DiscreteRange {
178178
* @param m Metric value to check.
179179
* @return @c true if @a m is in the range, @c false if not.
180180
*/
181-
bool contains(metric_type const& m) {
181+
bool contains(metric_type const& m) const {
182182
return _min <= m && m <= _max;
183183
}
184184

0 commit comments

Comments
 (0)