X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fyoink;a=blobdiff_plain;f=src%2FMoof%2Fcml%2Fvector%2Fvector_print.h;h=7106b324d6a404c42ac428fd509110f0420bcc5e;hp=cbb47642de29a105e9f9e1618c5326ace592b964;hb=50c1239917f5e443b8ec91773c85ceb3db7da67b;hpb=1dd005530930657fd6216edc1dfcfa4c270a81c9 diff --git a/src/Moof/cml/vector/vector_print.h b/src/Moof/cml/vector/vector_print.h index cbb4764..7106b32 100644 --- a/src/Moof/cml/vector/vector_print.h +++ b/src/Moof/cml/vector/vector_print.h @@ -21,11 +21,9 @@ namespace cml { template inline std::ostream& operator<<(std::ostream& os, const vector& v) { - os << "["; for (size_t i = 0; i < v.size(); ++i) { os << " " << v[i]; } - os << " ]"; return os; } @@ -33,11 +31,9 @@ operator<<(std::ostream& os, const vector& v) template< class XprT > inline std::ostream& operator<<(std::ostream& os, const et::VectorXpr& v) { - os << "["; for (size_t i = 0; i < v.size(); ++i) { os << " " << v[i]; } - os << " ]"; return os; }