ICU-22910 Fix coverity warning in number_fluent.cpp

See: https://unicode-org.atlassian.net/browse/ICU-22910
This commit is contained in:
Mike FABIAN 2024-09-22 10:36:36 +02:00
parent 2f348f4c7a
commit aad1392d81

View file

@ -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) {