*** empty log message ***

This commit is contained in:
David Rose 2001-05-16 21:44:30 +00:00
parent 7ee4c964ce
commit 67ceff871f
1 changed files with 8 additions and 0 deletions

View File

@ -64,7 +64,11 @@ is_on(NotifySeverity severity) const {
////////////////////////////////////////////////////////////////////
INLINE bool NotifyCategory::
is_spam() const {
#ifndef NDEBUG
return is_on(NS_spam);
#else
return false;
#endif
}
////////////////////////////////////////////////////////////////////
@ -74,7 +78,11 @@ is_spam() const {
////////////////////////////////////////////////////////////////////
INLINE bool NotifyCategory::
is_debug() const {
#ifndef NDEBUG
return is_on(NS_debug);
#else
return false;
#endif
}
////////////////////////////////////////////////////////////////////