Notify: silence warning about unused argument

This commit is contained in:
Philippe Renon
2018-05-27 14:21:57 +02:00
committed by Robert Osfield
parent 3838267770
commit 0a4a31d17b

View File

@@ -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);
}