summaryrefslogtreecommitdiff
path: root/sc/source/filter/inc/xistream.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-12-18 13:25:27 +0200
committerNoel Grandin <noel@peralex.com>2014-12-19 08:50:31 +0200
commit9315ccc397647bcb4fc15fe9e0cbe888819e5005 (patch)
tree958a6f6e8d0ebd71553f09c38b66b716c86bc870 /sc/source/filter/inc/xistream.hxx
parentae5d78d605bcb2a849f88cdfddfaf5cf1d5ebf64 (diff)
remove operator>> methods
in favour of ReadXXX methods Change-Id: I50a97c1855366dc14c6864da2fb91d1759d4d4db
Diffstat (limited to 'sc/source/filter/inc/xistream.hxx')
-rw-r--r--sc/source/filter/inc/xistream.hxx15
1 files changed, 6 insertions, 9 deletions
diff --git a/sc/source/filter/inc/xistream.hxx b/sc/source/filter/inc/xistream.hxx
index bcc29bad8b0e..85e949888b80 100644
--- a/sc/source/filter/inc/xistream.hxx
+++ b/sc/source/filter/inc/xistream.hxx
@@ -326,20 +326,17 @@ public:
sal_uInt16 PeekRecId( sal_Size nPos );
- XclImpStream& operator>>( sal_Int8& rnValue );
- XclImpStream& operator>>( sal_uInt8& rnValue );
- XclImpStream& operator>>( sal_Int16& rnValue );
- XclImpStream& operator>>( sal_uInt16& rnValue );
- XclImpStream& operator>>( sal_Int32& rnValue );
- XclImpStream& operator>>( sal_uInt32& rnValue );
- XclImpStream& operator>>( float& rfValue );
- XclImpStream& operator>>( double& rfValue );
-
+ SAL_WARN_UNUSED_RESULT
sal_uInt8 ReaduInt8();
+ SAL_WARN_UNUSED_RESULT
sal_Int16 ReadInt16();
+ SAL_WARN_UNUSED_RESULT
sal_uInt16 ReaduInt16();
+ SAL_WARN_UNUSED_RESULT
sal_Int32 ReadInt32();
+ SAL_WARN_UNUSED_RESULT
sal_uInt32 ReaduInt32();
+ SAL_WARN_UNUSED_RESULT
double ReadDouble();
/** Reads nBytes bytes to the existing(!) buffer pData.