From: Scott Cantor Date: Wed, 15 May 2013 21:24:32 +0000 (+0000) Subject: Fix doc on UTF8 functions. X-Git-Tag: 1.5.3~6 X-Git-Url: http://www.project-moonshot.org/gitweb/?p=shibboleth%2Fcpp-xmltooling.git;a=commitdiff_plain;h=8da8f81b0d6c2064df68d6635e6f4ce9dd3da9aa Fix doc on UTF8 functions. --- 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);