diff --git a/src/Math/Vector.h b/src/Math/Vector.h index b57dd2c33..f5a2f6c8d 100644 --- a/src/Math/Vector.h +++ b/src/Math/Vector.h @@ -30,8 +30,8 @@ namespace Magnum { namespace Math { /** @brief Vector */ template class Vector { public: - typedef T Type; - const static size_t Size = size; + typedef T Type; /**< @brief Vector data type */ + const static size_t Size = size; /**< @brief Vector size */ /** @brief Angle between vectors */ inline static T angle(const Vector& a, const Vector& b) {