Add some assertions.
git-svn-id: svn://localhost/ardour2/branches/3.0@9411 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
@@ -17,6 +17,7 @@
|
||||
*/
|
||||
|
||||
#include <cmath>
|
||||
#include <cassert>
|
||||
|
||||
#include "timecode/bbt_time.h"
|
||||
|
||||
@@ -31,6 +32,8 @@ BBT_Time::BBT_Time (double dbeats)
|
||||
always be zero.
|
||||
*/
|
||||
|
||||
assert (dbeats >= 0);
|
||||
|
||||
bars = 0;
|
||||
beats = rint (floor (dbeats));
|
||||
ticks = rint (floor (BBT_Time::ticks_per_beat * fmod (dbeats, 1.0)));
|
||||
|
||||
Reference in New Issue
Block a user