From 1467dc0637ad5c7d0a0f7d35da5c3fcead3d8f7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Mon, 27 Dec 2010 18:11:20 +0100 Subject: [PATCH] Inlined inline funciton. --- src/Math/Vector.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Math/Vector.h b/src/Math/Vector.h index 63355fd9f..3ec9a3d69 100644 --- a/src/Math/Vector.h +++ b/src/Math/Vector.h @@ -148,7 +148,7 @@ template class Vector { } /** @brief Normalized vector (of length 1) */ - Vector normalized() const { + inline Vector normalized() const { return *this/length(); }