Mercurial > hg > svcore
diff base/Resampler.cpp @ 843:e802e550a1f2
Drop std:: from cout, cerr, endl -- pull these in through Debug.h
author | Chris Cannam |
---|---|
date | Tue, 26 Nov 2013 13:35:08 +0000 |
parents | 02390a4c2abe |
children | 6a94bb528e9d |
line wrap: on
line diff
--- a/base/Resampler.cpp Tue Nov 26 11:16:37 2013 +0000 +++ b/base/Resampler.cpp Tue Nov 26 13:35:08 2013 +0000 @@ -26,6 +26,8 @@ #include <samplerate.h> +#include "Debug.h" + class Resampler::D { public: @@ -144,7 +146,7 @@ //!!! check err, respond appropriately if (data.input_frames_used != incount) { - std::cerr << "Resampler: NOTE: input_frames_used == " << data.input_frames_used << " (while incount = " << incount << ")" << std::endl; + cerr << "Resampler: NOTE: input_frames_used == " << data.input_frames_used << " (while incount = " << incount << ")" << endl; } return data.output_frames_gen;