mirror of https://github.com/CGAL/cgal
Merge pull request #181 from afabri/Apollonius_graph-smallfix-GF
Fix "if(this) is always true"
This commit is contained in:
commit
fffacb5023
|
|
@ -58,7 +58,7 @@ public:
|
|||
Vertex_handle up() {return _up;}
|
||||
Vertex_handle down() {return _down;}
|
||||
void set_up(Vertex_handle u) {_up=u;}
|
||||
void set_down(Vertex_handle d) {if (this) _down=d;}
|
||||
void set_down(Vertex_handle d) {_down=d;}
|
||||
|
||||
|
||||
private:
|
||||
|
|
|
|||
Loading…
Reference in New Issue