You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@santuario.apache.org by sc...@apache.org on 2018/01/09 17:46:14 UTC

svn commit: r1820684 - in /santuario/xml-security-cpp/trunk/xsec/xenc/impl: XENCEncryptedDataImpl.hpp XENCEncryptedKeyImpl.hpp

Author: scantor
Date: Tue Jan  9 17:46:14 2018
New Revision: 1820684

URL: http://svn.apache.org/viewvc?rev=1820684&view=rev
Log:
Suppress MSVC warnings.

Modified:
    santuario/xml-security-cpp/trunk/xsec/xenc/impl/XENCEncryptedDataImpl.hpp
    santuario/xml-security-cpp/trunk/xsec/xenc/impl/XENCEncryptedKeyImpl.hpp

Modified: santuario/xml-security-cpp/trunk/xsec/xenc/impl/XENCEncryptedDataImpl.hpp
URL: http://svn.apache.org/viewvc/santuario/xml-security-cpp/trunk/xsec/xenc/impl/XENCEncryptedDataImpl.hpp?rev=1820684&r1=1820683&r2=1820684&view=diff
==============================================================================
--- santuario/xml-security-cpp/trunk/xsec/xenc/impl/XENCEncryptedDataImpl.hpp (original)
+++ santuario/xml-security-cpp/trunk/xsec/xenc/impl/XENCEncryptedDataImpl.hpp Tue Jan  9 17:46:14 2018
@@ -37,6 +37,9 @@
 #include "XENCCipherImpl.hpp"
 #include "XENCEncryptedTypeImpl.hpp"
 
+#pragma warning(push)
+#pragma warning(disable: 4250)
+
 XSEC_DECLARE_XERCES_CLASS(DOMNode);
 
 class XENCEncryptedDataImpl : public XENCEncryptedData, public XENCEncryptedTypeImpl {
@@ -68,4 +71,6 @@ private:
 
 };
 
+#pragma warning(pop)
+
 #endif /* XENCENCRYPTEDDATAIMPL_INCLUDE */

Modified: santuario/xml-security-cpp/trunk/xsec/xenc/impl/XENCEncryptedKeyImpl.hpp
URL: http://svn.apache.org/viewvc/santuario/xml-security-cpp/trunk/xsec/xenc/impl/XENCEncryptedKeyImpl.hpp?rev=1820684&r1=1820683&r2=1820684&view=diff
==============================================================================
--- santuario/xml-security-cpp/trunk/xsec/xenc/impl/XENCEncryptedKeyImpl.hpp (original)
+++ santuario/xml-security-cpp/trunk/xsec/xenc/impl/XENCEncryptedKeyImpl.hpp Tue Jan  9 17:46:14 2018
@@ -37,6 +37,9 @@
 #include "XENCCipherImpl.hpp"
 #include "XENCEncryptedTypeImpl.hpp"
 
+#pragma warning(push)
+#pragma warning(disable: 4250)
+
 XSEC_DECLARE_XERCES_CLASS(DOMNode);
 
 class XENCEncryptedKeyImpl : public XENCEncryptedKey, public XENCEncryptedTypeImpl {
@@ -86,4 +89,6 @@ private:
 
 };
 
+#pragma warning(pop)
+
 #endif /* XENCENCRYPTEDKEYIMPL_INCLUDE */