From ec1be6d4f624a46a56c945e70014569e2bae41b5 Mon Sep 17 00:00:00 2001 From: Thomas Pietrzak Date: Fri, 1 Apr 2011 15:47:34 +0000 Subject: [PATCH] Remove debug string git-svn-id: svn+ssh://thomaspietrzak.com/var/svn/rep@7 47cf9a05-e0a8-4ed5-9e9b-101a649bc004 --- include/Track.hpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) 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(); -- 2.30.2