*** empty log message ***

This commit is contained in:
David Rose 2001-05-16 22:02:50 +00:00
parent ef04bfc296
commit 3eb794fa60
1 changed files with 8 additions and 0 deletions

View File

@ -71,7 +71,11 @@ is_on(NotifySeverity severity) {
template<class GetCategory>
INLINE bool NotifyCategoryProxy<GetCategory>::
is_spam() {
#ifndef NDEBUG
return get_unsafe_ptr()->is_spam();
#else
return false;
#endif
}
////////////////////////////////////////////////////////////////////
@ -82,7 +86,11 @@ is_spam() {
template<class GetCategory>
INLINE bool NotifyCategoryProxy<GetCategory>::
is_debug() {
#ifndef NDEBUG
return get_unsafe_ptr()->is_debug();
#else
return false;
#endif
}
////////////////////////////////////////////////////////////////////