vector: expose base assignment operator

This commit is contained in:
Danny Robson 2018-04-11 18:25:51 +10:00
parent 366b1f7879
commit 561925b201

View File

@ -33,6 +33,7 @@ namespace util {
struct vector : public coord::base<S,T,vector<S,T>>
{
using coord::base<S,T,vector<S,T>>::base;
using coord::base<S,T,vector<S,T>>::operator=;
// representations
template <size_t D = 4>