summaryrefslogtreecommitdiff
path: root/cosv
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2013-03-03 11:08:31 +0100
committerMichael Meeks <michael.meeks@suse.com>2013-03-04 11:34:07 +0000
commit5b04c9063cc9dd77dc55c361df081812af38cdbd (patch)
tree827cd9405e68df853362ac6a021c4619bf4a6bc3 /cosv
parentbf48090e0a81c6490ee938eabaef4e791df85229 (diff)
remove unused and commented out code
This code gets never called. Change-Id: I59228cba1444b7b09f74eb5cf8da9b755c7c32f7
Diffstat (limited to 'cosv')
-rw-r--r--cosv/inc/cosv/std_outp.hxx6
-rw-r--r--cosv/source/service/std_outp.cxx2
2 files changed, 0 insertions, 8 deletions
diff --git a/cosv/inc/cosv/std_outp.hxx b/cosv/inc/cosv/std_outp.hxx
index b660b35ce8f4..08fe179e16ab 100644
--- a/cosv/inc/cosv/std_outp.hxx
+++ b/cosv/inc/cosv/std_outp.hxx
@@ -38,9 +38,6 @@ class redirect_out : public ostream
public:
virtual ~redirect_out() {}
- void re_endl() { do_re_endl(); }
- void re_flush() { do_re_flush(); }
-
static void set_(
redirect_out & o_rStdOut,
redirect_out & o_rStdErr )
@@ -54,9 +51,6 @@ class redirect_out : public ostream
static bool useme_() { return pStdOut_ != 0; }
private:
- virtual void do_re_endl() = 0;
- virtual void do_re_flush() = 0;
-
// DATA
static redirect_out *
pStdOut_;
diff --git a/cosv/source/service/std_outp.cxx b/cosv/source/service/std_outp.cxx
index 7dc5e5f5069a..69a9e789e5b5 100644
--- a/cosv/source/service/std_outp.cxx
+++ b/cosv/source/service/std_outp.cxx
@@ -47,7 +47,6 @@ Endl( ostream & io_rStream )
io_rStream << std::endl;
// else
#endif
-// static_cast< redirect_out& >(io_rStream).re_endl();
}
void
@@ -58,7 +57,6 @@ Flush( ostream & io_rStream )
io_rStream << std::flush;
// else
#endif
-// static_cast< redirect_out& >(io_rStream).re_flush();
}
void