From 49c0734f6aa02f395d2d2696f199153198fde2a9 Mon Sep 17 00:00:00 2001 From: Travis Keep Date: Tue, 17 Jun 2014 14:26:41 +0000 Subject: [PATCH] ICU-10046 More review comments from roubert. X-SVN-Rev: 35881 --- icu4c/source/i18n/scientificformathelper.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/icu4c/source/i18n/scientificformathelper.cpp b/icu4c/source/i18n/scientificformathelper.cpp index 6253ca7a536..5a3a2bc0c61 100644 --- a/icu4c/source/i18n/scientificformathelper.cpp +++ b/icu4c/source/i18n/scientificformathelper.cpp @@ -37,7 +37,9 @@ ScientificFormatHelper::ScientificFormatHelper( ScientificFormatHelper::ScientificFormatHelper( const ScientificFormatHelper &other) - : fPreExponent(other.fPreExponent), fStaticSets(other.fStaticSets) { + : UObject(other), + fPreExponent(other.fPreExponent), + fStaticSets(other.fStaticSets) { } ScientificFormatHelper &ScientificFormatHelper::operator=(const ScientificFormatHelper &other) { -- 2.40.0