removed harmless warnings

This commit is contained in:
Paolo Cignoni 2012-12-02 14:53:37 +00:00
parent d946a6c390
commit cccc066735
3 changed files with 3 additions and 3 deletions

View File

@ -110,7 +110,7 @@ static int Open( OpenMeshType &m, std::vector<Shot<ScalarType> > & shots,
shots.resize(num_cams);
for(uint i = 0; i < num_cams;++i)
{
float f, k1, k2;
float f, k1;
vcg::Point4f R;
vcg::Point3f t;

View File

@ -530,7 +530,7 @@ public:
} // end while stream not eof
assert((numTriangles +numVertices) == numVerticesPlusFaces+extraTriangles);
FaceIterator fi = vcg::tri::Allocator<OpenMeshType>::AddFaces(m,numTriangles);
vcg::tri::Allocator<OpenMeshType>::AddFaces(m,numTriangles);
//-------------------------------------------------------------------------------
// Now the final passes:

View File

@ -96,7 +96,7 @@ static bool ReadHeader(const char * filename,unsigned int &/*num_cams*/, unsigne
static int Open( OpenMeshType &m, std::vector<Shot<ScalarType> > & shots,
std::vector<std::string > & image_filenames,
const char * filename,const char * filename_images, const char * filename_images_path = "",CallBackPos *cb=0)
const char * filename,const char * filename_images, CallBackPos *cb=0)
{
unsigned int num_cams,num_points;