From 16819addfa6527d2c0a67103e18faddc23960841 Mon Sep 17 00:00:00 2001 From: Christophe Geuzaine <cgeuzaine@ulg.ac.be> Date: Wed, 10 Nov 2004 16:36:15 +0000 Subject: [PATCH] fix gcc warning --- Common/AdaptiveViews.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Common/AdaptiveViews.cpp b/Common/AdaptiveViews.cpp index 68649cb22b..d1035ab1a9 100644 --- a/Common/AdaptiveViews.cpp +++ b/Common/AdaptiveViews.cpp @@ -73,7 +73,7 @@ void _triangle::Create (int maxlevel, Double_Matrix *coeffs, Double_Matrix *eexp _triangle *t = new _triangle(p1,p2,p3); Recur_Create (t, maxlevel,level,coeffs,eexps) ; - printf("%d _triangle and %d _point created\n",_triangle::all_triangles.size(),_point::all_points.size()); + printf("%d _triangle and %d _point created\n",(int)_triangle::all_triangles.size(),(int)_point::all_points.size()); } void _triangle::Recur_Create (_triangle *t, int maxlevel, int level , Double_Matrix *coeffs, Double_Matrix *eexps) { -- GitLab