Skip to content
Snippets Groups Projects
Commit dadf356c authored by BenceJanosSzabo's avatar BenceJanosSzabo
Browse files

fractiondigits fix


Change-Id: I20b7544a99ff28364f490b221afcf69658e14abc
Signed-off-by: default avatarBenceJanosSzabo <bence.janos.szabo@ericsson.com>
parent 746fecb2
No related branches found
No related tags found
No related merge requests found
...@@ -287,8 +287,10 @@ other.print("other"); ...@@ -287,8 +287,10 @@ other.print("other");
element_ |= other.element_; element_ |= other.element_;
embedValues_ |= other.embedValues_; embedValues_ |= other.embedValues_;
form_ = other.form_; form_ = other.form_;
has_fractionDigits_ = other.has_fractionDigits_; if (other.has_fractionDigits_) {
fractionDigits_ = other.fractionDigits_; has_fractionDigits_ = other.has_fractionDigits_;
fractionDigits_ = other.fractionDigits_;
}
hex_ |= other.hex_; hex_ |= other.hex_;
list_ |= other.list_; list_ |= other.list_;
if (other.name_.kw_ != NamespaceSpecification::NO_MANGLING) { if (other.name_.kw_ != NamespaceSpecification::NO_MANGLING) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment