ICU-20941 Fix uninitialized values: DerivedComponents' compound0_ and compound1_

This commit is contained in:
Hugo van der Merwe 2021-02-24 20:16:03 +01:00 committed by Jeff Genovy
parent 1aa0dad8e0
commit 8b48e1862c

View file

@ -658,7 +658,7 @@ class DerivedComponents {
UErrorCode status = U_ZERO_ERROR;
// Holds strings referred to by value0 and value1;
bool compound0_, compound1_;
bool compound0_ = false, compound1_ = false;
CharString value0_, value1_;
};