From 2adf5ae48af934dccf0a3d2b5b1e69b784cf2590 Mon Sep 17 00:00:00 2001 From: Dan Smith Date: Tue, 14 Nov 2023 11:12:15 -0500 Subject: [PATCH] use our own six::toString() rather than str::toString() --- six/modules/c++/six/source/XmlLite.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/six/modules/c++/six/source/XmlLite.cpp b/six/modules/c++/six/source/XmlLite.cpp index c483c21e5..250ff7b9c 100644 --- a/six/modules/c++/six/source/XmlLite.cpp +++ b/six/modules/c++/six/source/XmlLite.cpp @@ -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) {