#87298# remove operator<< for OString, now inline

This commit is contained in:
Juergen Schmidt 2001-06-20 14:25:24 +00:00
parent f07e4d501b
commit e19eb8b4b2

View File

@ -2,9 +2,9 @@
*
* $RCSfile: global.cxx,v $
*
* $Revision: 1.10 $
* $Revision: 1.11 $
*
* last change: $Author: jsc $ $Date: 2001-06-20 14:52:32 $
* last change: $Author: jsc $ $Date: 2001-06-20 15:25:24 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@ -380,15 +380,3 @@ sal_Int32 FileStream::getSize()
fclose(f);
return size;
}
ostream &operator <<(ostream& o, OString* s)
{
o << s->getStr();
return o;
}
ostream &operator <<(ostream& o, const OString& s)
{
o << s.getStr();
return o;
}