13
0

another BBT comparator fix

This commit is contained in:
Paul Davis 2018-11-03 23:15:16 -04:00
parent d682e61b99
commit c41c622b37

View File

@ -56,7 +56,7 @@ struct LIBTEMPORAL_API BBT_Time
bool operator<= (const BBT_Time& other) const {
return bars < other.bars ||
(bars <= other.bars && beats <= other.beats) ||
(bars <= other.bars && beats < other.beats) ||
(bars <= other.bars && beats <= other.beats && ticks <= other.ticks);
}