ICU-9803 Change const input parameter to non-const

X-SVN-Rev: 33121
This commit is contained in:
Michael Ow 2013-02-05 06:45:31 +00:00
parent 6ed22ad2cb
commit 2b96793827
2 changed files with 2 additions and 2 deletions
icu4c/source/io

View file

@ -300,7 +300,7 @@ u_fgetConverter(UFILE *file)
return file->fConverter;
}
#if !UCONFIG_NO_FORMATTING
U_CAPI const UNumberFormat* U_EXPORT2 u_fgetNumberFormat(const UFILE *file)
U_CAPI const UNumberFormat* U_EXPORT2 u_fgetNumberFormat(UFILE *file)
{
return u_locbund_getNumberFormat(&file->str.fBundle, UNUM_DECIMAL);
}

View file

@ -445,7 +445,7 @@ U_STABLE UConverter* U_EXPORT2 u_fgetConverter(UFILE *f);
* @return alias to the number formatter (The formatter <EM>must not</EM> be modified or closed)
* @draft ICU 51
*/
U_DRAFT const UNumberFormat* U_EXPORT2 u_fgetNumberFormat(const UFILE *f);
U_DRAFT const UNumberFormat* U_EXPORT2 u_fgetNumberFormat(UFILE *f);
/* Output functions */