mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-15 01:42:37 +00:00
ICU-4152 virtual functions should not be inline
X-SVN-Rev: 19100
This commit is contained in:
parent
0485d6ec53
commit
5cdbf449ca
2 changed files with 15 additions and 15 deletions
|
@ -311,6 +311,21 @@ UnicodeString &Win32NumberFormat::format(int32_t numDigits, UnicodeString &appen
|
|||
return appendTo;
|
||||
}
|
||||
|
||||
UnicodeString &Win32NumberFormat::format(double number, UnicodeString &appendTo) const
|
||||
{
|
||||
return NumberFormat::format(number, appendTo);
|
||||
}
|
||||
|
||||
UnicodeString &Win32NumberFormat::format(int32_t number, UnicodeString &appendTo) const
|
||||
{
|
||||
return NumberFormat::format(number, appendTo);
|
||||
}
|
||||
|
||||
UnicodeString &Win32NumberFormat::format(int64_t number, UnicodeString &appendTo) const
|
||||
{
|
||||
return NumberFormat::format(number, appendTo);
|
||||
}
|
||||
|
||||
U_NAMESPACE_END
|
||||
|
||||
#endif /* #if !UCONFIG_NO_FORMATTING */
|
||||
|
|
|
@ -158,21 +158,6 @@ private:
|
|||
|
||||
};
|
||||
|
||||
inline UnicodeString &Win32NumberFormat::format(double number, UnicodeString &appendTo) const
|
||||
{
|
||||
return NumberFormat::format(number, appendTo);
|
||||
}
|
||||
|
||||
inline UnicodeString &Win32NumberFormat::format(int32_t number, UnicodeString &appendTo) const
|
||||
{
|
||||
return NumberFormat::format(number, appendTo);
|
||||
}
|
||||
|
||||
inline UnicodeString &Win32NumberFormat::format(int64_t number, UnicodeString &appendTo) const
|
||||
{
|
||||
return NumberFormat::format(number, appendTo);
|
||||
}
|
||||
|
||||
U_NAMESPACE_END
|
||||
|
||||
#endif /* #if !UCONFIG_NO_FORMATTING */
|
||||
|
|
Loading…
Add table
Reference in a new issue