Removed a huge comment of unused code from Utils.cpp

git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@2032 726aef4b-f618-498e-8847-2d620e286838
This commit is contained in:
cflakes
2010-06-19 19:37:05 +00:00
parent 859c4ea182
commit 6678454b9f
-27
View File
@@ -440,33 +440,6 @@ bool CTable::GetLine(unsigned int uIdx, CString& sLine) const {
return false;
}
/*
bool CTable::Output(std::ostream oOut) {
stringstream ssSep;
ssSep << "-+-";
oOut << endl << ssSep.str() << endl;
for (unsigned int b = 0; b < size(); b++) {
map<CString, CString>* pRow = (*this)[b];
oOut << " | ";
for (unsigned int c = 0; c < m_vsHeaders.size(); c++) {
oOut.width(GetColumnWidth(c));
oOut << (*pRow)[m_vsHeaders[c]];
oOut << " | ";
}
oOut << endl;
}
oOut << ssSep.str() << endl;
return true;
}
*/
unsigned int CTable::GetColumnIndex(const CString& sName) const {
for (unsigned int i = 0; i < m_vsHeaders.size(); i++) {
if (m_vsHeaders[i] == sName)