Skip to content
Snippets Groups Projects
Commit 15d8f94b authored by Dmitry Yu. Naumov's avatar Dmitry Yu. Naumov
Browse files

[MeL] Correct PropertyVector debug output.

Use given output stream instead of cerr.
parent bdf0490c
No related branches found
No related tags found
No related merge requests found
......@@ -181,7 +181,7 @@ public:
os << "\tmapping (" << size() <<"):\n";
std::copy(this->cbegin(), this->cend(),
std::ostream_iterator<std::size_t>(os, " "));
std::cerr << "\n\tvalues (" << _values.size() << "):\n";
os << "\n\tvalues (" << _values.size() << "):\n";
for (std::size_t k(0); k<_values.size(); k++) {
os << "val: " << *(_values[k]) << ", address: " << _values[k] << "\n";
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment