From e5f8b48326b65d4bddb94bb92779ce7be0e9e15b Mon Sep 17 00:00:00 2001 From: florent <florent@laas.fr> Date: Sat, 6 Nov 2010 13:50:31 +0100 Subject: [PATCH] Fix bug in copy constructor of Value class * src/command/value.cpp. --- src/command/value.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/command/value.cpp b/src/command/value.cpp index af1bd10..121c8f5 100644 --- a/src/command/value.cpp +++ b/src/command/value.cpp @@ -115,16 +115,16 @@ namespace dynamicgraph { { switch(value.type_) { case BOOL: - value_ = new bool(value.intValue()); + value_ = new bool(value.boolValue()); break; case UNSIGNED: - value_ = new unsigned(value.intValue()); + value_ = new unsigned(value.unsignedValue()); break; case INT: value_ = new int(value.intValue()); break; case FLOAT: - value_ = new float(value.intValue()); + value_ = new float(value.floatValue()); break; case DOUBLE: value_ = new double(value.doubleValue()); -- GitLab