Jelajahi Sumber

*** empty log message ***

David Rose 25 tahun lalu
induk
melakukan
67ceff871f
1 mengubah file dengan 8 tambahan dan 0 penghapusan
  1. 8 0
      dtool/src/dconfig/notifyCategory.I

+ 8 - 0
dtool/src/dconfig/notifyCategory.I

@@ -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
 }
 
 ////////////////////////////////////////////////////////////////////