X-Git-Url: http://www.project-moonshot.org/gitweb/?p=shibboleth%2Fcpp-opensaml.git;a=blobdiff_plain;f=saml%2Fsaml2%2Fcore%2Fimpl%2FProtocols20Impl.cpp;h=1084ca59874def2a1b542f253d246b8f54f6b3bd;hp=29c8252940d2ac04b91d55e5aa8a6b23cd8f15fe;hb=0beb48ce00d0b6a3f177f7d9b48af1870ee92190;hpb=6056cca67278d65c4343928e4ceaebd1d6f04920 diff --git a/saml/saml2/core/impl/Protocols20Impl.cpp b/saml/saml2/core/impl/Protocols20Impl.cpp index 29c8252..1084ca5 100644 --- a/saml/saml2/core/impl/Protocols20Impl.cpp +++ b/saml/saml2/core/impl/Protocols20Impl.cpp @@ -38,7 +38,6 @@ using namespace opensaml::saml2p; using namespace opensaml::saml2; -using namespace opensaml; using namespace xmlsignature; using namespace xmlencryption; using namespace xmltooling; @@ -1131,7 +1130,7 @@ namespace opensaml { ResponseImpl(const ResponseImpl& src) : AbstractXMLObject(src), StatusResponseTypeImpl(src) { for (list::const_iterator i=src.m_children.begin(); i!=src.m_children.end(); i++) { if (*i) { - Assertion* assertion=dynamic_cast(*i); + saml2::Assertion* assertion=dynamic_cast(*i); if (assertion) { getAssertions().push_back(assertion->cloneAssertion()); continue;