mirror of https://github.com/CGAL/cgal
Swap two initializers to avoid a warning from gcc: "n_ will be initialized
after closed_".
This commit is contained in:
parent
1e696a6907
commit
2795375b05
|
|
@ -38,7 +38,7 @@ GraphicsViewPolylineInput_non_templated_base(QObject* parent,
|
|||
QGraphicsScene* s,
|
||||
int n,
|
||||
bool closed)
|
||||
: GraphicsViewInput(parent), path_item(NULL), b(NULL), e(NULL), n_(n), closed_(closed) , scene_(s)
|
||||
: GraphicsViewInput(parent), path_item(NULL), b(NULL), e(NULL), closed_(closed), n_(n), scene_(s)
|
||||
{}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue