Kaydet (Commit) a584c0a2 authored tarafından Mike Kaganski's avatar Mike Kaganski

oox: MSVC: pragma warning: make more specific, remove obsolete

Change-Id: I3b3f46be30fce0f9193ee8d52159b16d022d903f
Reviewed-on: https://gerrit.libreoffice.org/49039Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarMike Kaganski <mike.kaganski@collabora.com>
üst f365bca5
......@@ -193,14 +193,7 @@ 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;
......
......@@ -90,14 +90,7 @@ 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
BinaryOutputStream() : BinaryStreamBase( false ) {}
#ifdef _MSC_VER
#pragma warning(pop)
#endif
private:
BinaryOutputStream( BinaryOutputStream const& ) = delete;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment