Build fixes for building OSG with OSG_USE_REF_PTR_IMPLICIT_OUTPUT_CONVERSION set to OFF
This commit is contained in:
@@ -48,8 +48,8 @@ public:
|
||||
{ if (i<_placers.size()) _placers.erase(_placers.begin()+i); }
|
||||
|
||||
/// Get a child placer
|
||||
Placer* getPlacer( unsigned int i ) { return _placers.at(i); }
|
||||
const Placer* getPlacer( unsigned int i ) const { return _placers.at(i); }
|
||||
Placer* getPlacer( unsigned int i ) { return _placers[i].get(); }
|
||||
const Placer* getPlacer( unsigned int i ) const { return _placers[i].get(); }
|
||||
|
||||
/// Get number of placers
|
||||
unsigned int getNumPlacers() const { return _placers.size(); }
|
||||
|
||||
Reference in New Issue
Block a user