From 1abebfa6b8497d4192884e6f9a4e9682799f07fa Mon Sep 17 00:00:00 2001 From: fred Date: Sun, 24 Mar 2002 19:51:29 +0000 Subject: [PATCH] lilypond-0.1.8 --- lily/include/debug.hh | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/lily/include/debug.hh b/lily/include/debug.hh index 18055e067f..aca896309d 100644 --- a/lily/include/debug.hh +++ b/lily/include/debug.hh @@ -12,8 +12,8 @@ #include "lily-proto.hh" #include "warn.hh" -void error_t(const String& s, Time_description const & t_tdes); -void error_t(String const &s, const Moment &when); +void error_t (const String& s, Time_description const & t_tdes); +void error_t (String const &s, const Moment &when); #define WARN warnout << "warning: "<<__FUNCTION__ << "(): " extern ostream &warnout ; @@ -24,11 +24,13 @@ extern ostream *mlog; // debugging extern Dstream *monitor; // monitor - #ifdef NPRINT -#define mtor if (0) *monitor // clever hack +/** + Global debug output. Compare with cin, cout, cerr, DOUT is DEBUG OUTPUT + */ +#define DOUT if (0) *monitor // clever hack #else -#define mtor if (check_debug) monitor->identify_as(__PRETTY_FUNCTION__) +#define DOUT if (check_debug) monitor->identify_as (__PRETTY_FUNCTION__) #endif extern bool check_debug; -- 2.39.5