Drop some debug output

This was apparently left in from debugging earlier, and should no longer be
needed. Since it uses a GCC extension, it makes compilation on others fail.
This commit is contained in:
Simon Richter 2016-01-17 10:59:17 -05:00 committed by Chris Pavlina
parent ba66f0360a
commit ef582c07f3
1 changed files with 0 additions and 4 deletions

View File

@ -316,16 +316,12 @@ int PCBNEW_CONTROL::HighContrastMode( const TOOL_EVENT& aEvent )
int PCBNEW_CONTROL::HighContrastInc( const TOOL_EVENT& aEvent ) int PCBNEW_CONTROL::HighContrastInc( const TOOL_EVENT& aEvent )
{ {
std::cout << __PRETTY_FUNCTION__ << std::endl;
return 0; return 0;
} }
int PCBNEW_CONTROL::HighContrastDec( const TOOL_EVENT& aEvent ) int PCBNEW_CONTROL::HighContrastDec( const TOOL_EVENT& aEvent )
{ {
std::cout << __PRETTY_FUNCTION__ << std::endl;
return 0; return 0;
} }