From 6ba834168375c7d7f9a4e7c1e0ea4408e90a34d3 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Tue, 1 Jun 2010 09:23:21 +0000 Subject: [PATCH] From Wang Rui, "The Notify header doesn't include the OSG_ALWAYS macro, which is used in the quicktime plugin. The file attached is to fix that small problem." --- include/osg/Notify | 1 + 1 file changed, 1 insertion(+) diff --git a/include/osg/Notify b/include/osg/Notify index 95f15453e..b7ad579b4 100644 --- a/include/osg/Notify +++ b/include/osg/Notify @@ -80,6 +80,7 @@ extern OSG_EXPORT std::ostream& notify(const NotifySeverity severity); inline std::ostream& notify(void) { return notify(osg::INFO); } #define OSG_NOTIFY(level) if (osg::isNotifyEnabled(level)) osg::notify(level) +#define OSG_ALWAYS OSG_NOTIFY(osg::ALWAYS) #define OSG_FATAL OSG_NOTIFY(osg::FATAL) #define OSG_WARN OSG_NOTIFY(osg::WARN) #define OSG_NOTICE OSG_NOTIFY(osg::NOTICE)