Browse Source

bugfix : fix pedantic vs2012 warnings.

Signed-off-by: Kim Kulling <[email protected]>
Kim Kulling 12 years ago
parent
commit
6eaff77a7c
2 changed files with 4 additions and 4 deletions
  1. 3 3
      code/BlobIOSystem.h
  2. 1 1
      code/Exporter.cpp

+ 3 - 3
code/BlobIOSystem.h

@@ -88,9 +88,9 @@ public:
 
 
 	// -------------------------------------------------------------------
-    virtual size_t Read(void* pvBuffer, 
-		size_t pSize, 
-		size_t pCount) 
+    virtual size_t Read( void *, 
+		size_t, 
+		size_t ) 
 	{
 		return 0;
 	}

+ 1 - 1
code/Exporter.cpp

@@ -202,7 +202,7 @@ bool Exporter :: IsDefaultIOHandler() const
 
 
 // ------------------------------------------------------------------------------------------------
-const aiExportDataBlob* Exporter :: ExportToBlob(  const aiScene* pScene, const char* pFormatId, unsigned int pPreprocessing )
+const aiExportDataBlob* Exporter :: ExportToBlob(  const aiScene* pScene, const char* pFormatId, unsigned int )
 {
 	if (pimpl->blob) {
 		delete pimpl->blob;