prevented cast/unused/uninitialized warnings and some indentation work.
This commit is contained in:
parent
939da657a9
commit
08f9b6a4b3
wrap/io_trimesh
|
@ -691,6 +691,8 @@ static Matrix44f getTransfMatrixFromNode(const QDomElement parentNode)
|
|||
|
||||
static int Open(OpenMeshType& m,const char* filename, InfoDAE& info, CallBackPos *cb=0)
|
||||
{
|
||||
(void)cb;
|
||||
|
||||
QDEBUG("----- Starting the processing of %s ------",filename);
|
||||
//AdditionalInfoDAE& inf = new AdditionalInfoDAE();
|
||||
//info = new InfoDAE();
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -638,7 +638,7 @@ namespace io {
|
|||
if(fnameV != nameV) return VMI_INCOMPATIBLE_VERTEX_TYPE;
|
||||
if(fnameF != nameF) return VMI_INCOMPATIBLE_FACE_TYPE;
|
||||
|
||||
int offsetV,offsetF;
|
||||
int offsetV=0,offsetF=0;
|
||||
|
||||
if(vertSize!=0)
|
||||
/* read the address of the first vertex */
|
||||
|
|
Loading…
Reference in New Issue