From 5721ccb986b9290ae837d45e5bd03523930c662e Mon Sep 17 00:00:00 2001
From: Francois Keith <keith@lirmm.fr>
Date: Fri, 1 Aug 2014 11:45:19 +0200
Subject: [PATCH] [Win32] Remove template specialization declaratn, export
 symbols.

---
 include/dynamic-graph/value.h | 15 ++++-----------
 1 file changed, 4 insertions(+), 11 deletions(-)

diff --git a/include/dynamic-graph/value.h b/include/dynamic-graph/value.h
index 1b42a546..f3614bbe 100644
--- a/include/dynamic-graph/value.h
+++ b/include/dynamic-graph/value.h
@@ -109,21 +109,14 @@ namespace dynamicgraph {
     };
 
     /* ---- HELPER ---------------------------------------------------------- */
+    // Note: to ensure the WIN32 compatibility, it is necessary to export 
+    // the template specialization. Also, it is forbidden to do the template
+    // specialization declaration in the header file, for the same reason.
     template< typename T >
-      struct ValueHelper
+      struct DYNAMIC_GRAPH_DLLAPI ValueHelper
       {
 	static const Value::Type TypeID;
       };
-
-    template<> const Value::Type ValueHelper<bool>::TypeID;
-    template<> const Value::Type ValueHelper<unsigned>::TypeID;
-    template<> const Value::Type ValueHelper<int>::TypeID;
-    template<> const Value::Type ValueHelper<float>::TypeID;
-    template<> const Value::Type ValueHelper<double>::TypeID;
-    template<> const Value::Type ValueHelper<std::string>::TypeID;
-    template<> const Value::Type ValueHelper<Vector>::TypeID;
-    template<> const Value::Type ValueHelper<Matrix>::TypeID;
-
   } // namespace command
 } //namespace dynamicgraph
 
-- 
GitLab