diff --git a/src/osg/Program.cpp b/src/osg/Program.cpp index 4146aa690..40b97b90b 100644 --- a/src/osg/Program.cpp +++ b/src/osg/Program.cpp @@ -488,7 +488,7 @@ void Program::PerContextProgram::linkProgram(osg::State& state) for( AttribBindingList::const_iterator itr = programBindlist.begin(); itr != programBindlist.end(); ++itr ) { - OSG_NOTICE<<"Program's vertex attrib binding "<second<<", "<first<second<<", "<first<glBindAttribLocation( _glProgramHandle, itr->second, reinterpret_cast(itr->first.c_str()) ); } @@ -500,7 +500,7 @@ void Program::PerContextProgram::linkProgram(osg::State& state) for( AttribBindingList::const_iterator itr = stateBindlist.begin(); itr != stateBindlist.end(); ++itr ) { - OSG_NOTICE<<"State's vertex attrib binding "<second<<", "<first<second<<", "<first<glBindAttribLocation( _glProgramHandle, itr->second, reinterpret_cast(itr->first.c_str()) ); } }