author | sandman <sandman> | 2002-05-23 20:09:42 (UTC) |
---|---|---|
committer | sandman <sandman> | 2002-05-23 20:09:42 (UTC) |
commit | 582f7e6b7da49b90d2cfccd638bccd4ca279da37 (patch) (side-by-side diff) | |
tree | 703fb12864b2efa611a280b15890a0b94530dc35 /noncore | |
parent | 343f008ab9a6905ff6f9c953279e84cc581ea8b6 (diff) | |
download | opie-582f7e6b7da49b90d2cfccd638bccd4ca279da37.zip opie-582f7e6b7da49b90d2cfccd638bccd4ca279da37.tar.gz opie-582f7e6b7da49b90d2cfccd638bccd4ca279da37.tar.bz2 |
Removed unused operator<<(ostream&)
-rw-r--r-- | noncore/unsupported/qpdf/fixed.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/noncore/unsupported/qpdf/fixed.h b/noncore/unsupported/qpdf/fixed.h index e42aea0..d073421 100644 --- a/noncore/unsupported/qpdf/fixed.h +++ b/noncore/unsupported/qpdf/fixed.h @@ -180,10 +180,12 @@ template <unsigned int SH> inline fixed<SH> sqrt ( const fixed<SH> &f ) return fixed<SH> ( a1, true ); } +#if 0 // no std::ostream needed in OPIE template <unsigned int SH> inline std::ostream &operator << ( std::ostream &o, const fixed<SH> &f ) { o << double( f ); return o; } +#endif #endif |