From 0a4a31d17bc9c6932163061eab1f35834bf1b97a Mon Sep 17 00:00:00 2001 From: Philippe Renon Date: Sun, 27 May 2018 14:21:57 +0200 Subject: [PATCH] Notify: silence warning about unused argument --- src/osg/Notify.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/osg/Notify.cpp b/src/osg/Notify.cpp index 7f2e69c61..c4cef6029 100644 --- a/src/osg/Notify.cpp +++ b/src/osg/Notify.cpp @@ -250,6 +250,8 @@ void osg::StandardNotifyHandler::notify(osg::NotifySeverity severity, const char void osg::WinDebugNotifyHandler::notify(osg::NotifySeverity severity, const char *message) { + OSG_UNUSED(severity); + OutputDebugStringA(message); }