From 199933d73968a0affd24b7d2dd9d29ca58005277 Mon Sep 17 00:00:00 2001 From: Stephen Roderick Date: Thu, 24 Sep 2009 16:48:37 -0400 Subject: [PATCH] Make Vector2 Norm function not inline --- src/frames.hpp | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/frames.hpp b/src/frames.hpp index 2b1240a..833f8fb 100644 --- a/src/frames.hpp +++ b/src/frames.hpp @@ -946,7 +946,7 @@ public: double Normalize(double eps=epsilon); //! @return the norm of the vector - inline double Norm() const; + double Norm() const; //! projects v in its XY plane, and sets *this to these values inline void Set3DXY(const Vector& v); -- 1.6.4.1