Fix doc on UTF8 functions.
authorscantor <scantor@de75baf8-a10c-0410-a50a-987c0e22f00f>
Wed, 15 May 2013 21:24:32 +0000 (21:24 +0000)
committerscantor <scantor@de75baf8-a10c-0410-a50a-987c0e22f00f>
Wed, 15 May 2013 21:24:32 +0000 (21:24 +0000)
git-svn-id: https://svn.shibboleth.net/cpp-xmltooling/branches/REL_1@1026 de75baf8-a10c-0410-a50a-987c0e22f00f

xmltooling/unicode.h

index a2db686..eb842c4 100644 (file)
@@ -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);