|
|
@ -160,12 +160,10 @@ std::ostream& operator<<(std::ostream& os, const VT<T>& v)
|
|
|
|
v.out();
|
|
|
|
v.out();
|
|
|
|
return os;
|
|
|
|
return os;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef __SIZEOF_INT128__
|
|
|
|
#ifdef __SIZEOF_INT128__
|
|
|
|
std::ostream& operator<<(std::ostream& os, __int128 & v);
|
|
|
|
std::ostream& operator<<(std::ostream& os, __int128 & v);
|
|
|
|
std::ostream& operator<<(std::ostream& os, __uint128_t & v);
|
|
|
|
std::ostream& operator<<(std::ostream& os, __uint128_t & v);
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
template <class Type>
|
|
|
|
template <class Type>
|
|
|
|
struct decayed_impl<ColView, Type> { typedef ColRef<Type> type; };
|
|
|
|
struct decayed_impl<ColView, Type> { typedef ColRef<Type> type; };
|
|
|
|
|
|
|
|
|
|
|
|