diff options
author | Michael Stahl <mstahl@redhat.com> | 2014-03-30 22:38:42 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2014-03-30 22:41:48 +0200 |
commit | b3e52299c91d7f2ef16280fa2a0f5c4c6be37f6e (patch) | |
tree | 57a70396948f1177f9f42132b97a7c6385c94a42 /sc | |
parent | ba46f32c804e665741a6db6f2578a01045304d14 (diff) |
tools, sc: fix GCC -Werror=type-limits (comparison is always true)
... on 32 bit platforms. These asserts appear to be impossible anyway.
Change-Id: I6bd332ca49e9992740315e0f6c58e98ac337817c
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/filter/excel/xistream.cxx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sc/source/filter/excel/xistream.cxx b/sc/source/filter/excel/xistream.cxx index 5f98314fb895..d31268c186e9 100644 --- a/sc/source/filter/excel/xistream.cxx +++ b/sc/source/filter/excel/xistream.cxx @@ -430,7 +430,6 @@ XclImpStream::XclImpStream( SvStream& rInStrm, const XclImpRoot& rRoot, bool bCo mrStrm.Seek( STREAM_SEEK_TO_END ); mnStreamSize = mrStrm.Tell(); mrStrm.Seek( STREAM_SEEK_TO_BEGIN ); - OSL_ENSURE( mnStreamSize < STREAM_SEEK_TO_END, "XclImpStream::XclImpStream - stream error" ); } XclImpStream::~XclImpStream() |