diff --git a/src/Magnum/SceneGraph/Object.h b/src/Magnum/SceneGraph/Object.h index 9b7dc2c32..26913b822 100644 --- a/src/Magnum/SceneGraph/Object.h +++ b/src/Magnum/SceneGraph/Object.h @@ -304,7 +304,13 @@ template class Object: public AbstractObject transformations(std::vector>> objects, const typename Transformation::DataType& initialTransformation = typename Transformation::DataType()) const; + std::vector transformations(std::vector>> objects, const typename Transformation::DataType& initialTransformation = + #ifndef CORRADE_MSVC2015_COMPATIBILITY /* I hate this inconsistency */ + typename Transformation::DataType() + #else + Transformation::DataType() + #endif + ) const; /*@}*/