1
0
Fork 0
mirror of https://github.com/KingDuckZ/dindexer.git synced 2025-02-19 12:04:54 +00:00

Avoid messages clashing on stdout in debug.

This quickfix completely disables progress output in debug.
This commit is contained in:
King_DuckZ 2015-11-27 19:54:03 +00:00
parent f6c638e6e4
commit 51d0bfdf7a

View file

@ -15,6 +15,10 @@
* along with "dindexer". If not, see <http://www.gnu.org/licenses/>.
*/
#if defined(WITH_PROGRESS_FEEDBACK) && !defined(NDEBUG)
# undef WITH_PROGRESS_FEEDBACK
#endif
#include <iostream>
#include <iomanip>
#include <ciso646>