Fixed unused parameter warning.
This commit is contained in:
parent
4dfd655b0c
commit
eae28e4d91
@ -693,7 +693,7 @@ static size_t fileo_write_func(void *self, const void *buffer, size_t size)
|
||||
return f->fail() ? 0 : size;
|
||||
}
|
||||
|
||||
static void fileio_log_func(void *self, Lib3dsLogLevel level, int indent, const char *msg)
|
||||
static void fileio_log_func(void* /*self*/, Lib3dsLogLevel level, int /*indent*/, const char *msg)
|
||||
{
|
||||
osg::NotifySeverity l = osg::INFO;
|
||||
// Intentionally NOT mapping 3DS levels with OSG levels
|
||||
|
@ -145,14 +145,14 @@ public:
|
||||
|
||||
virtual void setVertexArray(unsigned int,const osg::Vec2*) {}
|
||||
|
||||
virtual void setVertexArray(unsigned int count,const osg::Vec3* vecs) {}
|
||||
virtual void setVertexArray(unsigned int,const osg::Vec3*) {}
|
||||
|
||||
virtual void setVertexArray(unsigned int,const osg::Vec4* ) {}
|
||||
virtual void setVertexArray(unsigned int,const osg::Vec4*) {}
|
||||
|
||||
virtual void setVertexArray(unsigned int,const osg::Vec2d*) {}
|
||||
|
||||
virtual void setVertexArray(unsigned int ,const osg::Vec3d* ) {}
|
||||
virtual void setVertexArray(unsigned int,const osg::Vec4d* ) {}
|
||||
virtual void setVertexArray(unsigned int ,const osg::Vec3d*) {}
|
||||
virtual void setVertexArray(unsigned int,const osg::Vec4d*) {}
|
||||
|
||||
|
||||
// operator for triangles
|
||||
|
Loading…
Reference in New Issue
Block a user