From 6678454b9fbb62e8c44a6369e3273800ea33d1d4 Mon Sep 17 00:00:00 2001 From: cflakes Date: Sat, 19 Jun 2010 19:37:05 +0000 Subject: [PATCH] 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 --- Utils.cpp | 27 --------------------------- 1 file changed, 27 deletions(-) diff --git a/Utils.cpp b/Utils.cpp index ea4cc839..7e0f0610 100644 --- a/Utils.cpp +++ b/Utils.cpp @@ -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* 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)