diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-10-17 10:12:55 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-10-17 12:06:31 +0200 |
commit | 4b5e8066e230b4fcbadb39b306f7c272865b0245 (patch) | |
tree | 83feb3ba53f1bf14800ecb40e22473a7e0c8d887 /include/tools | |
parent | a463287a3bf12ee3f6f58311e2629da19e6d014b (diff) |
workaround weird linking error on tb71
ever since
commit 9ec8bf8f22fe74884185492ef2576ce79b41e4f1
add SvStream::TellEnd
Change-Id: I3043459688e9cee16cdb71137c6808a3365b69f6
Reviewed-on: https://gerrit.libreoffice.org/61869
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/tools')
-rw-r--r-- | include/tools/stream.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/tools/stream.hxx b/include/tools/stream.hxx index dc2c926c371e..f6dc99155a1c 100644 --- a/include/tools/stream.hxx +++ b/include/tools/stream.hxx @@ -273,7 +273,7 @@ public: sal_uInt64 Seek( sal_uInt64 nPos ); sal_uInt64 SeekRel( sal_Int64 nPos ); sal_uInt64 Tell() const { return m_nBufFilePos + m_nBufActualPos; } - sal_uInt64 TellEnd() { return Tell() + remainingSize(); } + sal_uInt64 TellEnd(); // length between current (Tell()) pos and end of stream virtual sal_uInt64 remainingSize(); void Flush(); |