|
|
@@ -78,12 +78,6 @@ namespace glm
|
|
|
x(v.x)
|
|
|
{}
|
|
|
|
|
|
- template <typename T, precision P>
|
|
|
- template <typename U>
|
|
|
- GLM_FUNC_QUALIFIER tvec1<T, P>::tvec1(U const & s) :
|
|
|
- x(static_cast<T>(s))
|
|
|
- {}
|
|
|
-
|
|
|
//////////////////////////////////////
|
|
|
// Explicit basic constructors
|
|
|
|
|
|
@@ -91,6 +85,11 @@ namespace glm
|
|
|
GLM_FUNC_QUALIFIER tvec1<T, P>::tvec1(ctor)
|
|
|
{}
|
|
|
|
|
|
+ template <typename T, precision P>
|
|
|
+ GLM_FUNC_QUALIFIER tvec1<T, P>::tvec1(T const & s) :
|
|
|
+ x(s)
|
|
|
+ {}
|
|
|
+
|
|
|
//////////////////////////////////////
|
|
|
// Conversion vector constructors
|
|
|
|