mirror of
https://github.com/g-truc/glm.git
synced 2024-11-10 04:31:47 +00:00
Revert "fix: no implicit vector copy"
Reason: Wrong branch
This reverts commit 2d88860244
.
This commit is contained in:
parent
861d6d1933
commit
968c892f92
@ -78,9 +78,7 @@ namespace detail
|
||||
// Implicit basic constructors
|
||||
|
||||
GLM_FUNC_DECL tvec1();
|
||||
#ifndef GLM_NO_EXPLICIT_COPY
|
||||
GLM_FUNC_DECL tvec1(tvec1<T> const & v);
|
||||
#endif
|
||||
|
||||
//////////////////////////////////////
|
||||
// Explicit basic constructors
|
||||
@ -118,9 +116,7 @@ namespace detail
|
||||
//////////////////////////////////////
|
||||
// Unary arithmetic operators
|
||||
|
||||
#ifndef GLM_NO_EXPLICIT_COPY
|
||||
GLM_FUNC_DECL tvec1<T> & operator= (tvec1<T> const & v);
|
||||
#endif
|
||||
template <typename U>
|
||||
GLM_FUNC_DECL tvec1<T> & operator= (tvec1<U> const & v);
|
||||
|
||||
|
@ -73,7 +73,6 @@ namespace detail
|
||||
)
|
||||
{}
|
||||
|
||||
#ifndef GLM_NO_EXPLICIT_COPY
|
||||
template <typename T>
|
||||
GLM_FUNC_QUALIFIER tvec1<T>::tvec1
|
||||
(
|
||||
@ -81,7 +80,6 @@ namespace detail
|
||||
) :
|
||||
x(v.x)
|
||||
{}
|
||||
#endif
|
||||
|
||||
//////////////////////////////////////
|
||||
// Explicit basic constructors
|
||||
@ -150,7 +148,6 @@ namespace detail
|
||||
//////////////////////////////////////
|
||||
// Unary arithmetic operators
|
||||
|
||||
#ifndef GLM_NO_EXPLICIT_COPY
|
||||
template <typename T>
|
||||
GLM_FUNC_QUALIFIER tvec1<T> & tvec1<T>::operator=
|
||||
(
|
||||
@ -160,7 +157,6 @@ namespace detail
|
||||
this->x = v.x;
|
||||
return *this;
|
||||
}
|
||||
#endif
|
||||
|
||||
template <typename T>
|
||||
template <typename U>
|
||||
|
@ -107,9 +107,7 @@ namespace detail
|
||||
// Implicit basic constructors
|
||||
|
||||
GLM_FUNC_DECL tvec2();
|
||||
#ifndef GLM_NO_EXPLICIT_COPY
|
||||
GLM_FUNC_DECL tvec2(tvec2<T> const & v);
|
||||
#endif
|
||||
|
||||
//////////////////////////////////////
|
||||
// Explicit basic constructors
|
||||
@ -162,9 +160,7 @@ namespace detail
|
||||
//////////////////////////////////////
|
||||
// Unary arithmetic operators
|
||||
|
||||
#ifndef GLM_NO_EXPLICIT_COPY
|
||||
GLM_FUNC_DECL tvec2<T> & operator= (tvec2<T> const & v);
|
||||
#endif
|
||||
template <typename U>
|
||||
GLM_FUNC_DECL tvec2<T> & operator= (tvec2<U> const & v);
|
||||
|
||||
|
@ -76,7 +76,6 @@ namespace detail
|
||||
)
|
||||
{}
|
||||
|
||||
#ifndef GLM_NO_EXPLICIT_COPY
|
||||
template <typename T>
|
||||
GLM_FUNC_QUALIFIER tvec2<T>::tvec2
|
||||
(
|
||||
@ -85,7 +84,6 @@ namespace detail
|
||||
x(v.x),
|
||||
y(v.y)
|
||||
{}
|
||||
#endif
|
||||
|
||||
//////////////////////////////////////
|
||||
// Explicit basic constructors
|
||||
@ -181,7 +179,6 @@ namespace detail
|
||||
//////////////////////////////////////
|
||||
// Unary arithmetic operators
|
||||
|
||||
#ifndef GLM_NO_EXPLICIT_COPY
|
||||
template <typename T>
|
||||
GLM_FUNC_QUALIFIER tvec2<T> & tvec2<T>::operator=
|
||||
(
|
||||
@ -192,7 +189,6 @@ namespace detail
|
||||
this->y = v.y;
|
||||
return *this;
|
||||
}
|
||||
#endif
|
||||
|
||||
template <typename T>
|
||||
template <typename U>
|
||||
|
@ -108,9 +108,7 @@ namespace detail
|
||||
// Implicit basic constructors
|
||||
|
||||
GLM_FUNC_DECL tvec3();
|
||||
#ifndef GLM_NO_EXPLICIT_COPY
|
||||
GLM_FUNC_DECL tvec3(tvec3<T> const & v);
|
||||
#endif
|
||||
|
||||
//////////////////////////////////////
|
||||
// Explicit basic constructors
|
||||
@ -186,9 +184,7 @@ namespace detail
|
||||
//////////////////////////////////////
|
||||
// Unary arithmetic operators
|
||||
|
||||
#ifndef GLM_NO_EXPLICIT_COPY
|
||||
GLM_FUNC_DECL tvec3<T> & operator= (tvec3<T> const & v);
|
||||
#endif
|
||||
template <typename U>
|
||||
GLM_FUNC_DECL tvec3<T> & operator= (tvec3<U> const & v);
|
||||
|
||||
|
@ -77,7 +77,6 @@ namespace detail
|
||||
)
|
||||
{}
|
||||
|
||||
#ifndef GLM_NO_EXPLICIT_COPY
|
||||
template <typename T>
|
||||
GLM_FUNC_QUALIFIER tvec3<T>::tvec3
|
||||
(
|
||||
@ -87,7 +86,6 @@ namespace detail
|
||||
y(v.y),
|
||||
z(v.z)
|
||||
{}
|
||||
#endif
|
||||
|
||||
//////////////////////////////////////
|
||||
// Explicit basic constructors
|
||||
@ -230,7 +228,6 @@ namespace detail
|
||||
//////////////////////////////////////
|
||||
// Unary arithmetic operators
|
||||
|
||||
#ifndef GLM_NO_EXPLICIT_COPY
|
||||
template <typename T>
|
||||
GLM_FUNC_QUALIFIER tvec3<T>& tvec3<T>::operator=
|
||||
(
|
||||
@ -242,7 +239,6 @@ namespace detail
|
||||
this->z = v.z;
|
||||
return *this;
|
||||
}
|
||||
#endif
|
||||
|
||||
template <typename T>
|
||||
template <typename U>
|
||||
|
@ -109,9 +109,7 @@ namespace detail
|
||||
// Implicit basic constructors
|
||||
|
||||
GLM_FUNC_DECL tvec4();
|
||||
#ifndef GLM_NO_EXPLICIT_COPY
|
||||
GLM_FUNC_DECL tvec4(type const & v);
|
||||
#endif
|
||||
|
||||
//////////////////////////////////////
|
||||
// Explicit basic constructors
|
||||
@ -241,9 +239,7 @@ namespace detail
|
||||
//////////////////////////////////////
|
||||
// Unary arithmetic operators
|
||||
|
||||
#ifndef GLM_NO_EXPLICIT_COPY
|
||||
GLM_FUNC_DECL tvec4<T> & operator= (tvec4<T> const & v);
|
||||
#endif
|
||||
template <typename U>
|
||||
GLM_FUNC_DECL tvec4<T> & operator= (tvec4<U> const & v);
|
||||
|
||||
|
@ -78,7 +78,6 @@ namespace detail
|
||||
)
|
||||
{}
|
||||
|
||||
#ifndef GLM_NO_EXPLICIT_COPY
|
||||
template <typename T>
|
||||
GLM_FUNC_QUALIFIER tvec4<T>::tvec4
|
||||
(
|
||||
@ -89,7 +88,6 @@ namespace detail
|
||||
z(v.z),
|
||||
w(v.w)
|
||||
{}
|
||||
#endif
|
||||
|
||||
//////////////////////////////////////
|
||||
// Explicit basic constructors
|
||||
@ -369,7 +367,6 @@ namespace detail
|
||||
//////////////////////////////////////
|
||||
// Unary arithmetic operators
|
||||
|
||||
#ifndef GLM_NO_EXPLICIT_COPY
|
||||
template <typename T>
|
||||
GLM_FUNC_QUALIFIER tvec4<T> & tvec4<T>::operator=
|
||||
(
|
||||
@ -382,7 +379,6 @@ namespace detail
|
||||
this->w = v.w;
|
||||
return *this;
|
||||
}
|
||||
#endif
|
||||
|
||||
template <typename T>
|
||||
template <typename U>
|
||||
|
Loading…
Reference in New Issue
Block a user