Mercurial > hg > svgui
diff layer/SingleColourLayer.cpp @ 682:1a0dfcbffaf1
Drop std:: from cout, cerr, endl -- pull these in through Debug.h
author | Chris Cannam |
---|---|
date | Tue, 26 Nov 2013 14:06:40 +0000 |
parents | 4806715f7a19 |
children | e93c6ae12526 |
line wrap: on
line diff
--- a/layer/SingleColourLayer.cpp Tue Nov 26 11:16:45 2013 +0000 +++ b/layer/SingleColourLayer.cpp Tue Nov 26 14:06:40 2013 +0000 @@ -161,11 +161,11 @@ // a virtual function hint = getDefaultColourHint(dark, impose); #ifdef DEBUG_COLOUR_SELECTION - std::cerr << "hint = " << hint << ", impose = " << impose << std::endl; + cerr << "hint = " << hint << ", impose = " << impose << endl; #endif } else { #ifdef DEBUG_COLOUR_SELECTION - std::cerr << "(from ctor)" << std::endl; + cerr << "(from ctor)" << endl; #endif } @@ -188,19 +188,19 @@ } #ifdef DEBUG_COLOUR_SELECTION - std::cerr << "index = " << index << ", count = " << count; + cerr << "index = " << index << ", count = " << count; #endif if (bestColour < 0 || count < bestCount) { bestColour = index; bestCount = count; #ifdef DEBUG_COLOUR_SELECTION - std::cerr << " *"; + cerr << " *"; #endif } #ifdef DEBUG_COLOUR_SELECTION - std::cerr << std::endl; + cerr << endl; #endif }