harmless clang warning

This commit is contained in:
Paolo Cignoni 2016-02-12 06:54:20 +00:00
parent 13951475e9
commit 98f1a78882
1 changed files with 1 additions and 1 deletions

View File

@ -905,7 +905,7 @@ static void BuildBiasedSeedVec(MeshType &m,
std::vector<VoronoiEdge> edgeVec;
BuildVoronoiEdgeVec(m,edgeVec);
printf("Found %lu edges on a diagram of %lu seeds\n",edgeVec.size(),seedVec.size());
printf("Found %i edges on a diagram of %i seeds\n",int(edgeVec.size()),int(seedVec.size()));
std::map<VertexPointer,std::vector<VoronoiEdge *> > SeedToEdgeVecMap;
std::map< std::pair<VertexPointer,VertexPointer>, VoronoiEdge *> SeedPairToEdgeMap;