mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Clang : Remove inline from template function
This commit is contained in:
parent
59958dcc3a
commit
c208569fb6
@ -118,7 +118,7 @@ public:
|
||||
|
||||
private:
|
||||
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:
|
||||
S m_v[2];
|
||||
|
@ -144,7 +144,7 @@ public:
|
||||
|
||||
private:
|
||||
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:
|
||||
S m_v[3];
|
||||
|
Loading…
Reference in New Issue
Block a user