summaryrefslogtreecommitdiff
path: root/extensions
diff options
context:
space:
mode:
authorAlex Henrie <alexhenrie24@gmail.com>2019-12-02 19:45:14 -0700
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-12-03 07:12:36 +0100
commit94f0c6dfdec91d9f1d6dccd41315bd986c0ad590 (patch)
treee7ebfaa80e6d9af4016fd3391d9385413f482371 /extensions
parentb9930d0d05db39a8466b18dccf626bc3d8ae5c4e (diff)
Fix compilation with `make -- dbglevel=2`
Change-Id: Icdf93751b00453eb033fd577413bd6bc3527f87c Reviewed-on: https://gerrit.libreoffice.org/84286 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'extensions')
-rw-r--r--extensions/source/update/feed/updatefeed.cxx5
1 files changed, 0 insertions, 5 deletions
diff --git a/extensions/source/update/feed/updatefeed.cxx b/extensions/source/update/feed/updatefeed.cxx
index 8d00603cae75..15152721c35d 100644
--- a/extensions/source/update/feed/updatefeed.cxx
+++ b/extensions/source/update/feed/updatefeed.cxx
@@ -88,25 +88,20 @@ public:
m_xStream(rxStream) {};
virtual sal_Int32 SAL_CALL readBytes(uno::Sequence< sal_Int8 >& aData, sal_Int32 nBytesToRead)
- throw (io::NotConnectedException, io::BufferSizeExceededException, io::IOException, uno::RuntimeException)
{
sal_Int32 n = m_xStream->readBytes(aData, nBytesToRead);
return n;
};
virtual sal_Int32 SAL_CALL readSomeBytes(uno::Sequence< sal_Int8 >& aData, sal_Int32 nMaxBytesToRead)
- throw (io::NotConnectedException, io::BufferSizeExceededException, io::IOException, uno::RuntimeException)
{
sal_Int32 n = m_xStream->readSomeBytes(aData, nMaxBytesToRead);
return n;
};
virtual void SAL_CALL skipBytes( sal_Int32 nBytesToSkip )
- throw (io::NotConnectedException, io::BufferSizeExceededException, io::IOException, uno::RuntimeException)
{ m_xStream->skipBytes(nBytesToSkip); };
virtual sal_Int32 SAL_CALL available()
- throw (io::NotConnectedException, io::IOException, uno::RuntimeException)
{ return m_xStream->available(); };
virtual void SAL_CALL closeInput( )
- throw (io::NotConnectedException, io::IOException, uno::RuntimeException)
{};
};