[cpp-opensaml COMMIT] in /branches/REL_2/saml: internal.h saml2/metadata/impl/XMLMetadataProvider.cpp

noreply at shibboleth.net noreply at shibboleth.net
Wed Jan 11 16:43:28 GMT 2012


Author: scantor
Date: Wed Jan 11 16:43:28 2012
New Revision: 698

URL: http://svn.shibboleth.net/view/cpp-opensaml?rev=698&view=rev
Log:
Switched to scoped lock to fix missing header

Modified:
    branches/REL_2/saml/internal.h
    branches/REL_2/saml/saml2/metadata/impl/XMLMetadataProvider.cpp

Modified: branches/REL_2/saml/internal.h
URL: http://svn.shibboleth.net/view/cpp-opensaml/branches/REL_2/saml/internal.h?rev=698&r1=697&r2=698&view=diff
==============================================================================
--- branches/REL_2/saml/internal.h (original)
+++ branches/REL_2/saml/internal.h Wed Jan 11 16:43:28 2012
@@ -45,6 +45,7 @@
 #include "SAMLConfig.h"
 
 #include <limits.h>
+#include <boost/scoped_ptr.hpp>
 
 using namespace xercesc;
 
@@ -111,7 +112,7 @@
 
     private:
         int m_initCount;
-        std::auto_ptr<xmltooling::Mutex> m_lock;
+        boost::scoped_ptr<xmltooling::Mutex> m_lock;
     };
     /// @endcond
 

Modified: branches/REL_2/saml/saml2/metadata/impl/XMLMetadataProvider.cpp
URL: http://svn.shibboleth.net/view/cpp-opensaml/branches/REL_2/saml/saml2/metadata/impl/XMLMetadataProvider.cpp?rev=698&r1=697&r2=698&view=diff
==============================================================================
--- branches/REL_2/saml/saml2/metadata/impl/XMLMetadataProvider.cpp (original)
+++ branches/REL_2/saml/saml2/metadata/impl/XMLMetadataProvider.cpp Wed Jan 11 16:43:28 2012
@@ -32,7 +32,6 @@
 #include "saml2/metadata/DiscoverableMetadataProvider.h"
 
 #include <fstream>
-#include <boost/scoped_ptr.hpp>
 #include <xmltooling/XMLToolingConfig.h>
 #include <xmltooling/io/HTTPResponse.h>
 #include <xmltooling/util/DateTime.h>



More information about the commits mailing list