Skip to content

Commit

Permalink
use our own six::toString() rather than str::toString()
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan Smith committed Nov 14, 2023
1 parent f44e59e commit 2adf5ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion six/modules/c++/six/source/XmlLite.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ static std::string toString(const xml::lite::QName& name, const T& p, const xml:
{
try
{
return str::toString(p);
return six::toString(p);
}
catch (const except::Exception& ex)
{
Expand Down

0 comments on commit 2adf5ae

Please sign in to comment.