mirror of
https://github.com/jezhiggins/arabica
synced 2025-01-30 08:38:15 +01:00
Fix for non-std::string classes
This commit is contained in:
parent
3eb404dcd9
commit
8f41a01b88
1 changed files with 1 additions and 1 deletions
|
@ -92,7 +92,7 @@ void check_and_output_node_name(std::basic_ostream<charT, traitsT>& stream,
|
|||
{
|
||||
std::ostringstream os;
|
||||
os << 'a' << stream.iword(index)++;
|
||||
current[namespaceURI] = prefix.second = os.str();
|
||||
current[namespaceURI] = prefix.second = string_adaptorT::construct_from_utf8(os.str().c_str());
|
||||
} // if ...
|
||||
} // if ...
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue