From e19eb8b4b2bb55d6591a5d48e70aeb9cdc053344 Mon Sep 17 00:00:00 2001 From: Juergen Schmidt Date: Wed, 20 Jun 2001 14:25:24 +0000 Subject: [PATCH] #87298# remove operator<< for OString, now inline --- codemaker/source/codemaker/global.cxx | 16 ++-------------- 1 file 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; -}