Clang : Remove inline from template function

This commit is contained in:
Magne Sjaastad 2018-02-10 17:34:13 +01:00
parent 59958dcc3a
commit c208569fb6
2 changed files with 2 additions and 2 deletions

View File

@ -118,7 +118,7 @@ public:
private: private:
template<typename T> template<typename T>
friend inline const Vector2<T> operator*(T scalar, const Vector2<T>& rhs); friend const Vector2<T> operator*(T scalar, const Vector2<T>& rhs);
private: private:
S m_v[2]; S m_v[2];

View File

@ -144,7 +144,7 @@ public:
private: private:
template<typename T> template<typename T>
friend inline const Vector3<T> operator*(T scalar, const Vector3<T>& rhs); friend const Vector3<T> operator*(T scalar, const Vector3<T>& rhs);
private: private:
S m_v[3]; S m_v[3];