X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=src%2FMoof%2Fcml%2Fvector%2Fvector_print.h;h=7106b324d6a404c42ac428fd509110f0420bcc5e;hb=299af4f2047e767e5d79501c26444473bda64c64;hp=cbb47642de29a105e9f9e1618c5326ace592b964;hpb=c2321281bf12a7efaedde930422c7ddbc92080d4;p=chaz%2Fyoink 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; }