[cpp-xmltooling COMMIT] /branches/REL_1/xmltooling/unicode.h

noreply at shibboleth.net noreply at shibboleth.net
Wed May 15 17:24:33 EDT 2013


Author: scantor
Date: Wed May 15 17:24:32 2013
New Revision: 1026

URL: http://svn.shibboleth.net/view/cpp-xmltooling?rev=1026&view=rev
Log:
Fix doc on UTF8 functions.

Modified:
    branches/REL_1/xmltooling/unicode.h

Modified: branches/REL_1/xmltooling/unicode.h
URL: http://svn.shibboleth.net/view/cpp-xmltooling/branches/REL_1/xmltooling/unicode.h?rev=1026&r1=1025&r2=1026&view=diff
==============================================================================
--- branches/REL_1/xmltooling/unicode.h (original)
+++ branches/REL_1/xmltooling/unicode.h Wed May 15 17:24:32 2013
@@ -56,7 +56,7 @@
      *
      * @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 @@
      *
      * @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);
 



More information about the commits mailing list