Disable compiler warning.
authorScott Cantor <cantor.2@osu.edu>
Sun, 27 Sep 2009 03:41:14 +0000 (03:41 +0000)
committerScott Cantor <cantor.2@osu.edu>
Sun, 27 Sep 2009 03:41:14 +0000 (03:41 +0000)
xmltooling/security/CredentialCriteria.h

index ab73a68..342f2ea 100644 (file)
@@ -37,6 +37,11 @@ namespace xmlsignature {
 
 namespace xmltooling {
 
+#if defined (_MSC_VER)
+    #pragma warning( push )
+    #pragma warning( disable : 4251 )
+#endif
+
     /**
      * Class for specifying criteria by which a CredentialResolver should resolve credentials.
      */
@@ -240,6 +245,10 @@ namespace xmltooling {
         DSIGKeyInfoList* m_nativeKeyInfo;
         Credential* m_credential;
     };
+
+#if defined (_MSC_VER)
+    #pragma warning( pop )
+#endif
 };
 
 #endif /* __xmltooling_credcrit_h__ */