Skip to content
Snippets Groups Projects

Resolve "Bug in ProcessorMotion / TimeStamp"

Merged Joan Vallvé Navarro requested to merge 411-bug-in-processormotion-timestamp into devel
2 files
+ 2
1
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -49,7 +49,7 @@ CaptureMotion::~CaptureMotion()
bool CaptureMotion::containsTimeStamp (const TimeStamp& _ts, double _time_tolerance)
{
assert(_ts.ok());
assert(_ts.ok() and this->time_stamp_.ok());
// the same capture is within tolerance
if (this->time_stamp_ - _time_tolerance <= _ts && _ts <= this->time_stamp_ + _time_tolerance)
Loading