summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cppuhelper/source/interfacecontainer.cxx4
-rw-r--r--include/cppuhelper/propertysetmixin.hxx10
-rw-r--r--include/cppuhelper/propshlp.hxx3
3 files changed, 0 insertions, 17 deletions
diff --git a/cppuhelper/source/interfacecontainer.cxx b/cppuhelper/source/interfacecontainer.cxx
index d4d60b634d99..d4627ff94399 100644
--- a/cppuhelper/source/interfacecontainer.cxx
+++ b/cppuhelper/source/interfacecontainer.cxx
@@ -55,10 +55,6 @@ static void sequenceRemoveElementAt( Sequence< Reference< XInterface > > & rSeq,
rSeq = aDestSeq;
}
-#ifdef _MSC_VER
-#pragma warning( disable: 4786 )
-#endif
-
OInterfaceIteratorHelper::OInterfaceIteratorHelper( OInterfaceContainerHelper & rCont_ )
: rCont( rCont_ )
{
diff --git a/include/cppuhelper/propertysetmixin.hxx b/include/cppuhelper/propertysetmixin.hxx
index c50da4591b70..287ef7dd1fc7 100644
--- a/include/cppuhelper/propertysetmixin.hxx
+++ b/include/cppuhelper/propertysetmixin.hxx
@@ -56,12 +56,6 @@ namespace cppu {
template< typename T > class PropertySetMixin;
-// Suppress warnings about virtual functions but non-virtual destructor:
-#if defined _MSC_VER
-#pragma warning(push)
-#pragma warning(disable: 4265)
-#endif
-
/**
@short A helper base class for <code>cppu::PropertySetMixin</code>.
@@ -429,10 +423,6 @@ private:
#pragma GCC diagnostic pop
#endif
-#if defined _MSC_VER
-#pragma warning(pop)
-#endif
-
}
#endif
diff --git a/include/cppuhelper/propshlp.hxx b/include/cppuhelper/propshlp.hxx
index d9eb0c493741..4c102148a9f7 100644
--- a/include/cppuhelper/propshlp.hxx
+++ b/include/cppuhelper/propshlp.hxx
@@ -661,8 +661,6 @@ protected:
#endif
// Suppress warning about virtual functions but non-virtual destructor:
#if defined _MSC_VER
-#pragma warning(push)
-#pragma warning(disable: 4265)
#if defined __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wnon-virtual-dtor"
@@ -677,7 +675,6 @@ protected:
#if defined __clang__
#pragma clang diagnostic pop
#endif
-#pragma warning(pop)
#endif
/**