From 49af4cb5fb5a9f847165bfdc04fd3132af0afcf2 Mon Sep 17 00:00:00 2001
From: florent <florent@laas.fr>
Date: Fri, 17 Dec 2010 08:56:52 +0100
Subject: [PATCH] Fix Value::operator=.

    * src/command/value.cpp: operator= should assign this.
---
 src/command/value.cpp | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/src/command/value.cpp b/src/command/value.cpp
index b2df91d..6632472 100644
--- a/src/command/value.cpp
+++ b/src/command/value.cpp
@@ -178,7 +178,11 @@ namespace dynamicgraph {
 
     Value Value::operator=(const Value& value)
     {
-      return Value (value);
+      type_ = value.type_;
+      void** ptValue = const_cast<void**>(&value_);
+      *ptValue = copyValue(value);
+
+      return *this;
     }
 
     const EitherType Value::value() const
-- 
GitLab