diff --git a/include/osgParticle/Particle b/include/osgParticle/Particle index 430201a8e..df7b467ed 100644 --- a/include/osgParticle/Particle +++ b/include/osgParticle/Particle @@ -199,7 +199,7 @@ namespace osgParticle inline void transformPositionVelocity(const osg::Matrix& xform); /// Transform position and velocity vectors by a combination of two matrices - void Particle::transformPositionVelocity(const osg::Matrix& xform1, const osg::Matrix& xform2, float r); + void transformPositionVelocity(const osg::Matrix& xform1, const osg::Matrix& xform2, float r); /// Set the angle vector. inline void setAngle(const osg::Vec3& a); diff --git a/include/osgUtil/DelaunayTriangulator b/include/osgUtil/DelaunayTriangulator index 809a5fef4..c3e6d7685 100644 --- a/include/osgUtil/DelaunayTriangulator +++ b/include/osgUtil/DelaunayTriangulator @@ -91,7 +91,7 @@ public: /** Tesselate the constraint loops so that the crossing points are interpolated * and added to the contraints for the triangulation. */ - void DelaunayConstraint::handleOverlaps(void); + void handleOverlaps(void); protected: virtual ~DelaunayConstraint() {} diff --git a/src/osgTerrain/DataSet.cpp b/src/osgTerrain/DataSet.cpp index 76bc3ef0f..d558cfe46 100644 --- a/src/osgTerrain/DataSet.cpp +++ b/src/osgTerrain/DataSet.cpp @@ -513,7 +513,7 @@ void DataSet::SourceData::readImage(DestinationData& destination) // as RGB. if( hasRGB ) { - GDALRasterBand* bandRed = bandRed = _gdalDataSet->GetRasterBand(1); + GDALRasterBand* bandRed = _gdalDataSet->GetRasterBand(1); GDALRasterBand* bandGreen = _gdalDataSet->GetRasterBand(2); GDALRasterBand* bandBlue = _gdalDataSet->GetRasterBand(3); GDALRasterBand* bandAlpha = hasAlpha ? _gdalDataSet->GetRasterBand(4) : 0;