Merge pull request #551 from filnet/warn

Notify: silence warning about unused argument
This commit is contained in:
OpenSceneGraph git repository 2018-05-28 07:53:16 +01:00 committed by GitHub
commit 79033265d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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