summaryrefslogtreecommitdiff
path: root/include/comphelper/oslfile2streamwrap.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/comphelper/oslfile2streamwrap.hxx')
-rw-r--r--include/comphelper/oslfile2streamwrap.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/comphelper/oslfile2streamwrap.hxx b/include/comphelper/oslfile2streamwrap.hxx
index 6bce31371fc1..842da52ea174 100644
--- a/include/comphelper/oslfile2streamwrap.hxx
+++ b/include/comphelper/oslfile2streamwrap.hxx
@@ -39,7 +39,7 @@ class COMPHELPER_DLLPUBLIC OSLInputStreamWrapper : public ::cppu::WeakImplHelper
public:
OSLInputStreamWrapper(::osl::File& _rStream);
- virtual ~OSLInputStreamWrapper();
+ virtual ~OSLInputStreamWrapper() override;
// css::io::XInputStream
virtual sal_Int32 SAL_CALL readBytes(css::uno::Sequence< sal_Int8 >& aData, sal_Int32 nBytesToRead) throw(css::io::NotConnectedException, css::io::BufferSizeExceededException, css::uno::RuntimeException, std::exception) override;
@@ -59,7 +59,7 @@ public:
COMPHELPER_DLLPUBLIC OSLOutputStreamWrapper(::osl::File& _rFile);
private:
- virtual ~OSLOutputStreamWrapper();
+ virtual ~OSLOutputStreamWrapper() override;
// css::io::XOutputStream
virtual void SAL_CALL writeBytes(const css::uno::Sequence< sal_Int8 >& aData) throw(css::io::NotConnectedException, css::io::BufferSizeExceededException, css::uno::RuntimeException, std::exception) override;