mirror of https://github.com/CGAL/cgal
Fix -Wreorder warnings
This commit is contained in:
parent
2d862a43a2
commit
b9f2ae0ab3
|
|
@ -100,7 +100,7 @@ public:
|
|||
Construct_theta_graph_2 (unsigned int k,
|
||||
Direction_2 initial_direction = Direction_2(1,0),
|
||||
Cones_selected cones_selected = ALL_CONES
|
||||
): cone_number(k), rays(std::vector<Direction_2>(k)), cones_choice(cones_selected)
|
||||
): cone_number(k), cones_choice(cones_selected), rays(std::vector<Direction_2>(k))
|
||||
|
||||
{
|
||||
if (k<2) {
|
||||
|
|
|
|||
|
|
@ -95,7 +95,7 @@ public:
|
|||
Construct_yao_graph_2 (unsigned int k,
|
||||
Direction_2 initial_direction = Direction_2(1,0),
|
||||
Cones_selected cones_selected = ALL_CONES
|
||||
): cone_number(k), rays(std::vector<Direction_2>(k)), cones_choice(cones_selected)
|
||||
): cone_number(k), cones_choice(cones_selected), rays(std::vector<Direction_2>(k))
|
||||
|
||||
{
|
||||
if (k<2) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue