Merge pull request #181 from afabri/Apollonius_graph-smallfix-GF

Fix "if(this)  is always true"
This commit is contained in:
Laurent Rineau 2015-07-16 16:19:10 +02:00
commit fffacb5023
1 changed files with 1 additions and 1 deletions

View File

@ -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: