summaryrefslogtreecommitdiff
path: root/codemaker
diff options
context:
space:
mode:
authorJuergen Schmidt <jsc@openoffice.org>2001-06-20 14:25:24 +0000
committerJuergen Schmidt <jsc@openoffice.org>2001-06-20 14:25:24 +0000
commite19eb8b4b2bb55d6591a5d48e70aeb9cdc053344 (patch)
tree5b8ec4dadea0e0a684fc4770059148089f399e86 /codemaker
parentf07e4d501bd8ae85218fcc3bf2467abf0ea40e18 (diff)
#87298# remove operator<< for OString, now inline
Diffstat (limited to 'codemaker')
-rw-r--r--codemaker/source/codemaker/global.cxx16
1 files changed, 2 insertions, 14 deletions
diff --git a/codemaker/source/codemaker/global.cxx b/codemaker/source/codemaker/global.cxx
index dfefbc96c488..f1285684b204 100644
--- a/codemaker/source/codemaker/global.cxx
+++ b/codemaker/source/codemaker/global.cxx
@@ -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;
-}