mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-05 05:25:34 +00:00
Merge 2fff4bdaf1
into 770c4b8042
This commit is contained in:
commit
41dbc8b9b0
1 changed files with 3 additions and 3 deletions
|
@ -245,10 +245,10 @@ LocalizedNumberRangeFormatter::LocalizedNumberRangeFormatter(LocalizedNumberRang
|
|||
: LNF(static_cast<NFS<LNF>&&>(src)) {}
|
||||
|
||||
LocalizedNumberRangeFormatter::LocalizedNumberRangeFormatter(NFS<LNF>&& src) noexcept
|
||||
: NFS<LNF>(std::move(src)) {
|
||||
: NFS<LNF>(std::move(src)) {
|
||||
// Safely access the member from *this, which holds the moved-from state
|
||||
// Steal the compiled formatter
|
||||
LNF&& _src = static_cast<LNF&&>(src);
|
||||
auto* stolen = _src.fAtomicFormatter.exchange(nullptr);
|
||||
auto* stolen = this->fAtomicFormatter.exchange(nullptr);
|
||||
delete fAtomicFormatter.exchange(stolen);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue