[cpp-opensaml] branch master updated: Syntax bug for non-MS compilers.
Scott Cantor
cantor.2 at osu.edu
Wed Mar 18 14:45:00 EDT 2020
This is an automated email from the git hooks/post-receive script.
scantor pushed a commit to branch master
in repository cpp-opensaml.
View the commit online:
http://git.shibboleth.net/view/?p=cpp-opensaml.git;a=commit;h=51bf8914a73dca970ed414b15ac501ded08f35e9
The following commit(s) were added to refs/heads/master by this push:
new 51bf891 Syntax bug for non-MS compilers.
51bf891 is described below
commit 51bf8914a73dca970ed414b15ac501ded08f35e9
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Wed Mar 18 14:44:55 2020 -0400
Syntax bug for non-MS compilers.
---
saml/saml2/metadata/impl/EntityAttributesMetadataFilter.cpp | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/saml/saml2/metadata/impl/EntityAttributesMetadataFilter.cpp b/saml/saml2/metadata/impl/EntityAttributesMetadataFilter.cpp
index d7b3b03..390d1c7 100644
--- a/saml/saml2/metadata/impl/EntityAttributesMetadataFilter.cpp
+++ b/saml/saml2/metadata/impl/EntityAttributesMetadataFilter.cpp
@@ -65,12 +65,12 @@ namespace opensaml {
Category& m_log;
vector< boost::shared_ptr<Attribute> > m_attributes;
typedef multimap<xstring,const Attribute*> applymap_t;
- typedef map<boost::shared_ptr<RegularExpression>,vector<const Attribute*>> regexmap_t;
+ typedef map< boost::shared_ptr<RegularExpression>,vector<const Attribute*> > regexmap_t;
applymap_t m_applyMap;
regexmap_t m_regexMap;
};
- MetadataFilter* SAML_DLLLOCAL EntityAttributesMetadataFilterFactory(const DOMElement* const & e, bool deprecationSupport)
+ MetadataFilter* SAML_DLLLOCAL EntityAttributesMetadataFilterFactory(const DOMElement* const & e, bool)
{
return new EntityAttributesMetadataFilter(e);
}
@@ -121,7 +121,7 @@ EntityAttributesMetadataFilter::EntityAttributesMetadataFilter(const DOMElement*
}
}
-void EntityAttributesMetadataFilter::doFilter(const MetadataFilterContext* ctx, XMLObject& xmlObject) const
+void EntityAttributesMetadataFilter::doFilter(const MetadataFilterContext*, XMLObject& xmlObject) const
{
EntitiesDescriptor* group = dynamic_cast<EntitiesDescriptor*>(&xmlObject);
if (group) {
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list