*** empty log message ***
This commit is contained in:
parent
7ee4c964ce
commit
67ceff871f
|
|
@ -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
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////
|
||||
|
|
|
|||
Loading…
Reference in New Issue