removed some useless warning

This commit is contained in:
Paolo Cignoni 2009-10-30 10:55:16 +00:00
parent ed82effec9
commit 3850a66151
2 changed files with 2 additions and 2 deletions

View File

@ -208,7 +208,7 @@ namespace io {
static void Save(const SaveMeshType &m,char * filename){
static void Save(const SaveMeshType &m,const char * filename){
unsigned int i;
unsigned int vertSize,faceSize;
F() = fopen(filename,"wb");

View File

@ -194,7 +194,7 @@ namespace io {
*/
template <class MeshType> struct K {
template <int VoF>
static void AddAttrib(MeshType &m, const char * name, unsigned int s, void * data){
static void AddAttrib(MeshType &/*m*/, const char * /*name*/, unsigned int /*s*/, void * /*data*/){
// if yohu got this your attribute is larger than 1048576. Honestly...
assert(0);
}