Fixed build for when ref_ptr<> impicit cast is not built

This commit is contained in:
Robert Osfield 2008-11-29 11:10:56 +00:00
parent b021f0c518
commit a14b6b9e24

View File

@ -213,7 +213,7 @@ namespace osgAnimation
// process all pending remove action operation
while( !_removeActionOperations.empty())
{
internalRemoveAction(_removeActionOperations.back().second);
internalRemoveAction(_removeActionOperations.back().second.get());
_removeActionOperations.pop_back();
}
}