From 9e523d8a4062ad52330dff6c2ba50e54184c9bb2 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Wed, 24 Jun 2015 01:06:04 +0100 Subject: No-op: whitespace. --- src/dcp_time.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/dcp_time.cc') diff --git a/src/dcp_time.cc b/src/dcp_time.cc index 43c1ee49..8101bed1 100644 --- a/src/dcp_time.cc +++ b/src/dcp_time.cc @@ -59,7 +59,7 @@ Time::set (double seconds, int tcr_) { s = floor (seconds); tcr = tcr_; - + e = int (round ((seconds - s) * tcr)); if (s >= 60) { @@ -86,7 +86,7 @@ Time::Time (string time, int tcr_) if (b.size() != 4) { boost::throw_exception (DCPReadError ("unrecognised time specification")); } - + h = raw_convert (b[0]); m = raw_convert (b[1]); s = raw_convert (b[2]); @@ -218,7 +218,7 @@ dcp::operator- (Time a, Time b) } else { r.tcr = a.tcr; } - + r.e = a.e - b.e; if (r.e < 0) { r.e += r.tcr; -- cgit v1.2.3