diff options
author | himajin100000 <himajin100000@gmail.com> | 2018-03-29 02:05:27 +0900 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-03-31 12:40:27 +0200 |
commit | 1e73a1bfab8abe658e2864ae1512737e489dfb0f (patch) | |
tree | e8676bbfcda39d632b552787a414414cb497c6eb | |
parent | 457208b260cbcc0b3aa1f045702d18a31d6dc671 (diff) |
Added includes that are only used in DEBUG builds
Change-Id: I80f835ce31d44c1df32955fdc48f0accfb062747
Reviewed-on: https://gerrit.libreoffice.org/52162
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
-rw-r--r-- | extensions/source/update/feed/updatefeed.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/extensions/source/update/feed/updatefeed.cxx b/extensions/source/update/feed/updatefeed.cxx index e1d846ba8546..e42f064d156f 100644 --- a/extensions/source/update/feed/updatefeed.cxx +++ b/extensions/source/update/feed/updatefeed.cxx @@ -58,6 +58,10 @@ #include <osl/conditn.hxx> #include <vcl/svapp.hxx> +#ifdef DEBUG +#include <com/sun/star/io/NotConnectedException.hpp> +#include <com/sun/star/io/BufferSizeExceededException.hpp> +#endif namespace beans = com::sun::star::beans ; namespace container = com::sun::star::container ; namespace deployment = com::sun::star::deployment ; |