Fixed typo

This commit is contained in:
Robert Osfield
2010-02-10 12:48:21 +00:00
parent f17e401347
commit c5d0ff600b

View File

@@ -75,10 +75,10 @@ extern OSG_EXPORT std::ostream& notify(const NotifySeverity severity);
inline std::ostream& notify(void) { return notify(osg::INFO); }
#define OSG_NOTIFY(level) if (level>isNotifyEnabled(level)) osg::notify(level)
#define OSG_NOTIFY(level) if (isNotifyEnabled(level)) osg::notify(level)
#if _DEBUG
#define OSG_DEBUG_NOTIFY(level) if (level>isNotifyEnabled(level)) osg::notify(level)
#define OSG_DEBUG_NOTIFY(level) if (isNotifyEnabled(level)) osg::notify(level)
#else
// when using an optimized build use if (false) to tell the compiler to ignore the rest of the notify.
#define OSG_DEBUG_NOTIFY(level) if (false) osg::notify(level)