diff options
author | David Robillard <d@drobilla.net> | 2010-01-07 22:31:26 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2010-01-07 22:31:26 +0000 |
commit | 724bb11d5df2fd688390788ca641c92a940cb724 (patch) | |
tree | 1e35e5f6eb49b5dc96dabfce9f1d8eea74682dcb /test/quantize_test.cpp | |
parent | 37858603596d47b0f55b8a491fcedc626a18f963 (diff) | |
download | raul-724bb11d5df2fd688390788ca641c92a940cb724.tar.gz raul-724bb11d5df2fd688390788ca641c92a940cb724.tar.bz2 raul-724bb11d5df2fd688390788ca641c92a940cb724.zip |
Tidy test output.
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2370 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'test/quantize_test.cpp')
-rw-r--r-- | test/quantize_test.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/quantize_test.cpp b/test/quantize_test.cpp index 39ba899..a3c30de 100644 --- a/test/quantize_test.cpp +++ b/test/quantize_test.cpp @@ -13,8 +13,8 @@ main() for (double in = 0.0; in < 32; in += 0.23) { TimeStamp beats(TimeUnit(TimeUnit::BEATS, 19200), in); - cout << "Q(" << in << ", 1/4) = " - << Quantizer::quantize(q, beats) << endl; + /*cout << "Q(" << in << ", 1/4) = " + << Quantizer::quantize(q, beats) << endl;*/ if (Quantizer::quantize(q, beats).subticks() % (19200/4) != 0) return 1; |