mirror of https://github.com/CGAL/cgal
workaround to avoid an unjustified warning of g++
This commit is contained in:
parent
154d3937b1
commit
c5c387f45e
|
|
@ -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) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue