Skip to content

Commit af5e6c2

Browse files
committed
Zarr: use std::move()
1 parent 64e4d4b commit af5e6c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frmts/zarr/zarr_v3_codec.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1006,7 +1006,7 @@ bool ZarrV3CodecSequence::InitFromJson(const CPLJSONObject &oCodecs)
10061006
poEndianCodec->InitFromConfiguration(
10071007
ZarrV3CodecBytes::GetConfiguration(true), oInputArrayMetadata,
10081008
oOutputArrayMetadata);
1009-
oInputArrayMetadata = oOutputArrayMetadata;
1009+
oInputArrayMetadata = std::move(oOutputArrayMetadata);
10101010
eLastType = poEndianCodec->GetOutputType();
10111011
osLastCodec = poEndianCodec->GetName();
10121012
#if !CPL_IS_LSB

0 commit comments

Comments
 (0)