summaryrefslogtreecommitdiff
path: root/include/oox/helper/binaryinputstream.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/oox/helper/binaryinputstream.hxx')
-rw-r--r--include/oox/helper/binaryinputstream.hxx7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/oox/helper/binaryinputstream.hxx b/include/oox/helper/binaryinputstream.hxx
index afc48d3c6351..fba55a0127c7 100644
--- a/include/oox/helper/binaryinputstream.hxx
+++ b/include/oox/helper/binaryinputstream.hxx
@@ -193,7 +193,14 @@ public:
protected:
/** This dummy default c'tor will never call the c'tor of the virtual base
class BinaryStreamBase as this class cannot be instantiated directly. */
+#ifdef _MSC_VER
+#pragma warning(push)
+#pragma warning( disable : 4702)
+#endif
BinaryInputStream() : BinaryStreamBase( false ) {}
+#ifdef _MSC_VER
+#pragma warning(pop)
+#endif
private:
BinaryInputStream( BinaryInputStream const& ) = delete;