From: Thomas Pietrzak Date: Fri, 1 Apr 2011 15:47:34 +0000 (+0000) Subject: Remove debug string X-Git-Url: https://git.thomaspietrzak.com/?a=commitdiff_plain;h=ec1be6d4f624a46a56c945e70014569e2bae41b5;p=hapticmetronome.git Remove debug string git-svn-id: svn+ssh://thomaspietrzak.com/var/svn/rep@7 47cf9a05-e0a8-4ed5-9e9b-101a649bc004 --- diff --git a/include/Track.hpp b/include/Track.hpp index 6883c44..3847f72 100644 --- a/include/Track.hpp +++ b/include/Track.hpp @@ -57,11 +57,7 @@ class Track uint32_t getTimeSignatures(uint32_t pos); list > getBips() const { return _bips; } - void addBip(uint32_t tick, double timestamp) { - stringstream strs; - strs << "Bip at " << tick << ":" << timestamp << endl; - OutputDebugString( strs.str().c_str() ) ; - _bips.push_back(Pair(tick, timestamp)); } + void addBip(uint32_t tick, double timestamp) { _bips.push_back(Pair(tick, timestamp)); } //void computeBips();