Merge from trunk.

[SVN r77829]
This commit is contained in:
Vladimir Prus
2012-04-08 10:02:26 +00:00
parent c054a3b034
commit cddd2c593f
23 changed files with 5013 additions and 504 deletions

View File

@@ -18,7 +18,7 @@ using namespace std;
template<class T>
ostream& operator<<(ostream& os, const vector<T>& v)
{
copy(v.begin(), v.end(), ostream_iterator<T>(cout, " "));
copy(v.begin(), v.end(), ostream_iterator<T>(os, " "));
return os;
}