From 8da8f81b0d6c2064df68d6635e6f4ce9dd3da9aa Mon Sep 17 00:00:00 2001 From: Scott Cantor Date: Wed, 15 May 2013 21:24:32 +0000 Subject: [PATCH] Fix doc on UTF8 functions. --- xmltooling/unicode.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xmltooling/unicode.h b/xmltooling/unicode.h index a2db686..eb842c4 100644 --- a/xmltooling/unicode.h +++ b/xmltooling/unicode.h @@ -56,7 +56,7 @@ namespace xmltooling { * * @param src the 16-bit string to transcode * @param use_malloc true iff the result should be allocated with malloc, false to use new - * @return a UTF-8 string allocated by the Xerces memory manager + * @return a UTF-8 string allocated by new or malloc */ extern XMLTOOL_API char* toUTF8(const XMLCh* src, bool use_malloc=false); @@ -65,7 +65,7 @@ namespace xmltooling { * * @param src the UTF-8 string to transcode * @param use_malloc true iff the result should be allocated with malloc, false to use new - * @return a 16-bit Unicode string allocated by the Xerces memory manager + * @return a 16-bit Unicode string allocated by new or malloc */ extern XMLTOOL_API XMLCh* fromUTF8(const char* src, bool use_malloc=false); -- 2.1.4