mirror of
https://github.com/jezhiggins/arabica
synced 2025-01-17 18:12:04 +01:00
popped quotes around the wrong thing
This commit is contained in:
parent
acff44245d
commit
29d425528d
2 changed files with 2 additions and 2 deletions
|
@ -38,7 +38,7 @@ public:
|
|||
const UriMapper& mapper)
|
||||
{
|
||||
if(!Arabica::XML::is_qname<string_adaptor>(rawname))
|
||||
throw std::runtime_error("Bad qname : " + SA::asStdString(rawname));
|
||||
throw std::runtime_error("Bad qname : '" + SA::asStdString(rawname) +"'");
|
||||
|
||||
static string_type COLON = SA::construct_from_utf8(":");
|
||||
|
||||
|
|
|
@ -40,7 +40,7 @@ struct QName
|
|||
static QName create(const std::string& qName, const std::string& namespaceURI)
|
||||
{
|
||||
if(!Arabica::XML::is_qname<Arabica::default_string_adaptor<std::string> >(qName))
|
||||
throw SAX::SAXException("Bad name : " + qName);
|
||||
throw SAX::SAXException("Bad name : '" + qName + "'");
|
||||
|
||||
static char COLON = Arabica::text::Unicode<char>::COLON;
|
||||
|
||||
|
|
Loading…
Reference in a new issue