Skip to content
Snippets Groups Projects
Commit 16819add authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

fix gcc warning
parent edf78661
No related branches found
No related tags found
No related merge requests found
...@@ -73,7 +73,7 @@ void _triangle::Create (int maxlevel, Double_Matrix *coeffs, Double_Matrix *eexp ...@@ -73,7 +73,7 @@ void _triangle::Create (int maxlevel, Double_Matrix *coeffs, Double_Matrix *eexp
_triangle *t = new _triangle(p1,p2,p3); _triangle *t = new _triangle(p1,p2,p3);
Recur_Create (t, maxlevel,level,coeffs,eexps) ; 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) void _triangle::Recur_Create (_triangle *t, int maxlevel, int level , Double_Matrix *coeffs, Double_Matrix *eexps)
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment