Removed obsolete operator<<(string) method

pull/3/head
Chris Laurel 2001-02-28 02:00:36 +00:00
parent 4b25a8d3e4
commit ecc55dd14e
1 changed files with 0 additions and 12 deletions

View File

@ -47,18 +47,6 @@ Console::~Console()
}
#if 0
Console& Console::operator<<(string s)
{
int len = s.length();
for (int i = 0; i < len; i++)
print(s[i]);
return *this;
}
#endif
void Console::setFont(TexFont* _font)
{
font = _font;