From d830318a1fd6a4990e5b09ac5b4939bc26a742ca Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Wed, 20 Feb 2019 23:59:23 +0100 Subject: [PATCH] Further Windows build fixes. --- src/rdb/rdb/rdb.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/rdb/rdb/rdb.h b/src/rdb/rdb/rdb.h index e622d07a7..5914d1cb1 100644 --- a/src/rdb/rdb/rdb.h +++ b/src/rdb/rdb/rdb.h @@ -466,7 +466,7 @@ int type_index_of (); * Using this class, any value can be stored inside the collection of Values. */ template -class RDB_PUBLIC Value +class RDB_PUBLIC_TEMPLATE Value : public ValueBase { public: @@ -524,7 +524,7 @@ private: * @brief Type bindings */ template -RDB_PUBLIC ValueBase *make_value (const T &value) +RDB_PUBLIC_TEMPLATE ValueBase *make_value (const T &value) { return new Value (value); }