diff options
author | Miodrag Milanovic <mmicko@gmail.com> | 2018-06-28 13:34:23 +0200 |
---|---|---|
committer | Miodrag Milanovic <mmicko@gmail.com> | 2018-06-28 17:57:26 +0200 |
commit | 403c2d65a207e47a18198514ff67af5367611ef1 (patch) | |
tree | 39b3c0f7dd3a24eba75835719dc0becd57082b4f /3rdparty/python-console | |
parent | 9cf23d101041d1e990f57d78e4712226b8a449c7 (diff) | |
download | nextpnr-403c2d65a207e47a18198514ff67af5367611ef1.tar.gz nextpnr-403c2d65a207e47a18198514ff67af5367611ef1.tar.bz2 nextpnr-403c2d65a207e47a18198514ff67af5367611ef1.zip |
few more
Diffstat (limited to '3rdparty/python-console')
-rw-r--r-- | 3rdparty/python-console/Console.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/3rdparty/python-console/Console.cpp b/3rdparty/python-console/Console.cpp index 51057385..c844ae62 100644 --- a/3rdparty/python-console/Console.cpp +++ b/3rdparty/python-console/Console.cpp @@ -72,10 +72,6 @@ void Console::handleReturnKeyPress( ) QString line = getLine( ); -#ifndef NDEBUG - std::cout << line.toStdString( ) << "\n"; -#endif - m_parseHelper.process( line.toStdString( ) ); if ( m_parseHelper.buffered( ) ) { @@ -232,7 +228,6 @@ void Console::autocomplete( ) { append(it->c_str()); } - std::cout << width() << "\n"; setTextColor( NORMAL_COLOR ); } } |