mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-16 02:07:15 +00:00
ICU-9803 Change const input parameter to non-const
X-SVN-Rev: 33121
This commit is contained in:
parent
6ed22ad2cb
commit
2b96793827
2 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
}
|
||||
|
|
|
@ -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 */
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue