From c208569fb691793c67c8e73a4e99f58314e58230 Mon Sep 17 00:00:00 2001 From: Magne Sjaastad Date: Sat, 10 Feb 2018 17:34:13 +0100 Subject: [PATCH] Clang : Remove inline from template function --- Fwk/VizFwk/LibCore/cvfVector2.h | 2 +- Fwk/VizFwk/LibCore/cvfVector3.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Fwk/VizFwk/LibCore/cvfVector2.h b/Fwk/VizFwk/LibCore/cvfVector2.h index 720dceab45..c80c087e20 100644 --- a/Fwk/VizFwk/LibCore/cvfVector2.h +++ b/Fwk/VizFwk/LibCore/cvfVector2.h @@ -118,7 +118,7 @@ public: private: template - friend inline const Vector2 operator*(T scalar, const Vector2& rhs); + friend const Vector2 operator*(T scalar, const Vector2& rhs); private: S m_v[2]; diff --git a/Fwk/VizFwk/LibCore/cvfVector3.h b/Fwk/VizFwk/LibCore/cvfVector3.h index 25d4c9533e..0a31071367 100644 --- a/Fwk/VizFwk/LibCore/cvfVector3.h +++ b/Fwk/VizFwk/LibCore/cvfVector3.h @@ -144,7 +144,7 @@ public: private: template - friend inline const Vector3 operator*(T scalar, const Vector3& rhs); + friend const Vector3 operator*(T scalar, const Vector3& rhs); private: S m_v[3];