From 8a0b98516194d0591a12bd82369820fb5c05e216 Mon Sep 17 00:00:00 2001 From: Richard Kreckel Date: Fri, 11 May 2001 14:14:53 +0000 Subject: [PATCH] * node assignment was not returning *this. --- check/time_antipode.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/check/time_antipode.cpp b/check/time_antipode.cpp index 12ee3db4..d716ea24 100644 --- a/check/time_antipode.cpp +++ b/check/time_antipode.cpp @@ -178,6 +178,7 @@ const node & node::operator=(const node &n) delete vert; vert = (n.vert)->copy(); children = n.children; + return *this; } void node::add_child(const node &childnode, bool cut) -- 2.44.0