[cpp-opensaml] 01/02: CPPOST-105 Remove no-parameter constructor
Rod Widdowson
rdw at steadingsoftware.com
Thu Nov 30 09:53:09 EST 2017
This is an automated email from the git hooks/post-receive script.
rdw 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=eb7a4c4ce1ea0544c6498d47c09a6e4fb3d91bb8
commit eb7a4c4ce1ea0544c6498d47c09a6e4fb3d91bb8
Author: Rod Widdowson <rdw at steadingsoftware.com>
AuthorDate: Wed Nov 29 17:21:59 2017 +0000
CPPOST-105 Remove no-parameter constructor
https://issues.shibboleth.net/jira/browse/CPPOST-105
By removing the no-parameter constructor we cannot accidentally
initialize the provide without supplying a (potentially null DOM
element) and thus avoid accidentally non installing the filters
---
saml/saml2/metadata/MetadataProvider.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/saml/saml2/metadata/MetadataProvider.h b/saml/saml2/metadata/MetadataProvider.h
index 71d7f48..8f338ee 100644
--- a/saml/saml2/metadata/MetadataProvider.h
+++ b/saml/saml2/metadata/MetadataProvider.h
@@ -90,7 +90,7 @@ namespace opensaml {
*
* @param e DOM to supply configuration for provider
*/
- MetadataProvider(const xercesc::DOMElement* e=nullptr);
+ MetadataProvider(const xercesc::DOMElement* e);
public:
/**
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list