mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-05 05:25:34 +00:00
ICU-22910 Fix coverity warning in number_fluent.cpp
See: https://unicode-org.atlassian.net/browse/ICU-22910
This commit is contained in:
parent
2f348f4c7a
commit
aad1392d81
1 changed files with 3 additions and 3 deletions
|
@ -472,9 +472,9 @@ LocalizedNumberFormatter::LocalizedNumberFormatter(const NFS<LNF>& other)
|
|||
LocalizedNumberFormatter::LocalizedNumberFormatter(LocalizedNumberFormatter&& src) noexcept
|
||||
: LNF(static_cast<NFS<LNF>&&>(src)) {}
|
||||
|
||||
LocalizedNumberFormatter::LocalizedNumberFormatter(NFS<LNF>&& src) noexcept
|
||||
: NFS<LNF>(std::move(src)) {
|
||||
lnfMoveHelper(std::move(static_cast<LNF&&>(src)));
|
||||
LocalizedNumberFormatter::LocalizedNumberFormatter(NFS<LNF>&& src) noexcept {
|
||||
lnfMoveHelper(static_cast<LNF&&>(src)); // Call before moving src
|
||||
static_cast<NFS<LNF>&>(*this) = std::move(src); // Move after
|
||||
}
|
||||
|
||||
LocalizedNumberFormatter& LocalizedNumberFormatter::operator=(const LNF& other) {
|
||||
|
|
Loading…
Add table
Reference in a new issue