mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-21 04:29:31 +00:00
ICU-900 Fixed some compiler warnings
X-SVN-Rev: 4784
This commit is contained in:
parent
05478226be
commit
addeee49e9
2 changed files with 3 additions and 1 deletions
|
@ -38,7 +38,8 @@ DateFormat::DateFormat()
|
|||
//----------------------------------------------------------------------
|
||||
|
||||
DateFormat::DateFormat(const DateFormat& other)
|
||||
: fCalendar(0),
|
||||
: Format(other),
|
||||
fCalendar(0),
|
||||
fNumberFormat(0)
|
||||
{
|
||||
*this = other;
|
||||
|
|
|
@ -75,6 +75,7 @@ NumberFormat::~NumberFormat()
|
|||
// copy constructor
|
||||
|
||||
NumberFormat::NumberFormat(const NumberFormat &source)
|
||||
: Format(source)
|
||||
{
|
||||
*this = source;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue