mirror of
https://github.com/jezhiggins/arabica
synced 2024-11-15 19:48:00 +01:00
typename fix
This commit is contained in:
parent
0ea5226801
commit
769a5b98a3
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ public:
|
|||
else
|
||||
{
|
||||
QName qn = QName::create(name);
|
||||
std::map<string_type, string_type>::const_iterator ns = namespaces_.find(qn.prefix);
|
||||
typename std::map<string_type, string_type>::const_iterator ns = namespaces_.find(qn.prefix);
|
||||
if(ns == namespaces_.end())
|
||||
throw SAX::SAXException("xsl:element Runtime Error - Undeclared prefix " + qn.prefix);
|
||||
namesp = ns->second;
|
||||
|
|
Loading…
Reference in a new issue