workaround to avoid an unjustified warning of g++

This commit is contained in:
Andreas Fabri 2011-10-24 13:21:59 +00:00
parent 154d3937b1
commit c5c387f45e
1 changed files with 1 additions and 1 deletions

View File

@ -300,7 +300,7 @@ MainWindow::loadEdgConstraints(QString fileName)
int n; int n;
ifs >> n; ifs >> n;
K::Point_2 p,q, qold; K::Point_2 p,q, qold(0,0); // Initialize qold, as otherwise some g++ issue a unjustified warning
SVD::Vertex_handle vp, vq, vqold; SVD::Vertex_handle vp, vq, vqold;
while(ifs >> p) { while(ifs >> p) {