Further Windows build fixes.

This commit is contained in:
Matthias Koefferlein 2019-02-20 23:59:23 +01:00
parent 03d744cc5b
commit d830318a1f
1 changed files with 2 additions and 2 deletions

View File

@ -466,7 +466,7 @@ int type_index_of ();
* Using this class, any value can be stored inside the collection of Values.
*/
template <class C>
class RDB_PUBLIC Value
class RDB_PUBLIC_TEMPLATE Value
: public ValueBase
{
public:
@ -524,7 +524,7 @@ private:
* @brief Type bindings
*/
template <class T>
RDB_PUBLIC ValueBase *make_value (const T &value)
RDB_PUBLIC_TEMPLATE ValueBase *make_value (const T &value)
{
return new Value<T> (value);
}