summaryrefslogtreecommitdiff
path: root/include/oox/helper/binaryinputstream.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/oox/helper/binaryinputstream.hxx')
-rw-r--r--include/oox/helper/binaryinputstream.hxx8
1 files changed, 0 insertions, 8 deletions
diff --git a/include/oox/helper/binaryinputstream.hxx b/include/oox/helper/binaryinputstream.hxx
index 569f48d77642..0c876ecadbef 100644
--- a/include/oox/helper/binaryinputstream.hxx
+++ b/include/oox/helper/binaryinputstream.hxx
@@ -349,10 +349,6 @@ public:
non-seekable streams too. */
virtual void skip( sal_Int32 nBytes, size_t nAtomSize = 1 ) SAL_OVERRIDE;
- /** Stream operator for all data types supported by the readValue() function. */
- template< typename Type >
- SequenceInputStream& operator>>( Type& ornValue ) { ornValue = readValue<Type>(); return *this; }
-
private:
/** Returns the number of bytes available in the sequence for the passed byte count. */
sal_Int32 getMaxBytes( sal_Int32 nBytes ) const
@@ -414,10 +410,6 @@ public:
non-seekable streams too. Does not seek out of the data block. */
virtual void skip( sal_Int32 nBytes, size_t nAtomSize = 1 ) SAL_OVERRIDE;
- /** Stream operator for all data types supported by the readValue() function. */
- template< typename Type >
- RelativeInputStream& operator>>( Type& ornValue ) { readValue( ornValue ); return *this; }
-
private:
/** Returns the number of bytes available in the sequence for the passed byte count. */
sal_Int32 getMaxBytes( sal_Int32 nBytes ) const