remove wrong typename keyword

This commit is contained in:
wmayer
2019-09-07 00:29:18 +02:00
parent 530b75d594
commit 19abb09fab

View File

@@ -99,7 +99,7 @@ inline _Vec1 convertTo(const _Vec2& v)
typedef typename traits_type::float_type float_type;
traits_type t(v);
auto tuple = t.get();
return make_vec<_Vec1, typename float_type>(std::move(tuple));
return make_vec<_Vec1, float_type>(std::move(tuple));
}
}