Mercurial > hg > svcore
diff data/model/EditableDenseThreeDimensionalModel.cpp @ 843:e802e550a1f2
Drop std:: from cout, cerr, endl -- pull these in through Debug.h
author | Chris Cannam |
---|---|
date | Tue, 26 Nov 2013 13:35:08 +0000 |
parents | 33fca917c800 |
children | 48410857b03c |
line wrap: on
line diff
--- a/data/model/EditableDenseThreeDimensionalModel.cpp Tue Nov 26 11:16:37 2013 +0000 +++ b/data/model/EditableDenseThreeDimensionalModel.cpp Tue Nov 26 13:35:08 2013 +0000 @@ -177,7 +177,7 @@ { assert(index < m_data.size()); - //std::cout << "truncateAndStore(" << index << ", " << values.size() << ")" << std::endl; + //cout << "truncateAndStore(" << index << ", " << values.size() << ")" << endl; // The default case is to store the entire column at m_data[index] // and place 0 at m_trunc[index] to indicate that it has not been @@ -274,8 +274,8 @@ // given += values.size(); // stored += values.size(); -// std::cout << "given: " << given << ", stored: " << stored << " (" -// << ((float(stored) / float(given)) * 100.f) << "%)" << std::endl; +// cout << "given: " << given << ", stored: " << stored << " (" +// << ((float(stored) / float(given)) * 100.f) << "%)" << endl; // default case if nothing wacky worked out m_data[index] = values; @@ -302,7 +302,7 @@ Column p = expandAndRetrieve(index - tdist); int psize = p.size(), csize = c.size(); if (psize != m_yBinCount) { - std::cerr << "WARNING: EditableDenseThreeDimensionalModel::expandAndRetrieve: Trying to expand from incorrectly sized column" << std::endl; + cerr << "WARNING: EditableDenseThreeDimensionalModel::expandAndRetrieve: Trying to expand from incorrectly sized column" << endl; } if (top) { for (int i = csize; i < psize; ++i) {