Skip to content

Commit

Permalink
[Test] Optimize BitArchiveReader::items
Browse files Browse the repository at this point in the history
  • Loading branch information
rikyoz committed May 16, 2024
1 parent 036e627 commit 31b3809
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bitarchivereader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ auto BitArchiveReader::items() const -> std::vector< BitArchiveItemInfo > {
item.setProperty( property, propertyValue );
}
}
result.push_back( item );
result.push_back( std::move( item ) );
}
return result;
}
Expand Down

0 comments on commit 31b3809

Please sign in to comment.