From 6e1a22610f0d7d116174f9092f9d2fcb4319eaaf Mon Sep 17 00:00:00 2001 From: Clemens Zeidler Date: Sat, 18 Jun 2011 01:29:27 +0000 Subject: [PATCH] Add a comment about who is responsible to clean up. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@42226 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/libs/linprog/Constraint.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/headers/libs/linprog/Constraint.h b/headers/libs/linprog/Constraint.h index ac2a0103cf..7abda49165 100644 --- a/headers/libs/linprog/Constraint.h +++ b/headers/libs/linprog/Constraint.h @@ -31,6 +31,8 @@ public: int32 Index() const; SummandList* LeftSide(); + /*! This just overwrites the current list. The caller has to take + care about the old left side, i.e. delete it. */ void SetLeftSide(SummandList* summands); void SetLeftSide(double coeff1, Variable* var1);