From 03289b18acd0808081e143aa3e0982629f4ca77f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Mon, 9 Jan 2012 22:54:07 +0100 Subject: [PATCH] Doc++ --- src/Math/Vector.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) {