Suppress VS warning.
authorcantor <cantor@cb58f699-b61c-0410-a6fe-9272a202ed29>
Sun, 19 Sep 2010 01:50:00 +0000 (01:50 +0000)
committercantor <cantor@cb58f699-b61c-0410-a6fe-9272a202ed29>
Sun, 19 Sep 2010 01:50:00 +0000 (01:50 +0000)
git-svn-id: https://svn.middleware.georgetown.edu/cpp-sp/branches/REL_2@3325 cb58f699-b61c-0410-a6fe-9272a202ed29

shibsp/ServiceProvider.h

index f3003c4..2486967 100644 (file)
@@ -53,6 +53,11 @@ namespace shibsp {
     class SHIBSP_API TransactionLog;
 #endif
 
+#if defined (_MSC_VER)
+    #pragma warning( push )
+    #pragma warning( disable : 4251 )
+#endif
+
     /**
      * Interface to a Shibboleth ServiceProvider instance.
      * 
@@ -238,6 +243,10 @@ namespace shibsp {
         std::map<std::string,Remoted*> m_listenerMap;
     };
 
+#if defined (_MSC_VER)
+    #pragma warning( pop )
+#endif
+
     /**
      * Registers ServiceProvider classes into the runtime.
      */