| Index: source/i18n/decfmtst.cpp
|
| diff --git a/source/i18n/decfmtst.cpp b/source/i18n/decfmtst.cpp
|
| index d1ea6f4d4c4a1f2850c8ef2b5d883e315a515997..78c01f2a2a0b4d37220dff5d53b47d234d527a0a 100644
|
| --- a/source/i18n/decfmtst.cpp
|
| +++ b/source/i18n/decfmtst.cpp
|
| @@ -1,7 +1,9 @@
|
| +// Copyright (C) 2016 and later: Unicode, Inc. and others.
|
| +// License & terms of use: http://www.unicode.org/copyright.html
|
| /*
|
| *******************************************************************************
|
| -* Copyright (C) 2009-2013, International Business Machines Corporation and *
|
| -* others. All Rights Reserved. *
|
| +* Copyright (C) 2009-2016, International Business Machines Corporation and
|
| +* others. All Rights Reserved.
|
| *******************************************************************************
|
| *
|
| * This file contains the class DecimalFormatStaticSets
|
| @@ -141,11 +143,11 @@ DecimalFormatStaticSets::DecimalFormatStaticSets(UErrorCode &status)
|
|
|
| initUnicodeSet(
|
| gMinusSigns,
|
| - sizeof(gMinusSigns) / sizeof(gMinusSigns[0]),
|
| + UPRV_LENGTHOF(gMinusSigns),
|
| fMinusSigns);
|
| initUnicodeSet(
|
| gPlusSigns,
|
| - sizeof(gPlusSigns) / sizeof(gPlusSigns[0]),
|
| + UPRV_LENGTHOF(gPlusSigns),
|
| fPlusSigns);
|
|
|
| // Freeze all the sets
|
|
|