1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-19 23:23:52 +00:00

Let's put it as a MSVC-only fix for now

This commit is contained in:
Alexander "Ace" Olofsson 2015-12-01 04:19:30 +01:00
parent e42f4999bd
commit cfcbd20d99

View file

@ -52,7 +52,11 @@ namespace NifOsg
{ {
} }
#ifdef _MSC_VER
ValueInterpolator(boost::shared_ptr<const MapT> keys, typename MapT::ValueType defaultVal = MapT::ValueType()) ValueInterpolator(boost::shared_ptr<const MapT> keys, typename MapT::ValueType defaultVal = MapT::ValueType())
#else
ValueInterpolator(boost::shared_ptr<const MapT> keys, typename MapT::ValueType defaultVal = typename MapT::ValueType())
#endif
: mKeys(keys) : mKeys(keys)
, mDefaultVal(defaultVal) , mDefaultVal(defaultVal)
{ {