We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 875482a commit 93fadc8Copy full SHA for 93fadc8
2 files changed
src/ROOTFrameData.cc
@@ -12,7 +12,7 @@ std::optional<podio::CollectionReadBuffers> ROOTFrameData::getCollectionBuffers(
12
return std::nullopt;
13
}
14
15
- return std::move(bufferHandle.mapped());
+ return {std::move(bufferHandle.mapped())};
16
17
18
podio::CollectionIDTable ROOTFrameData::getIDTable() const {
src/ROOTReader.cc
@@ -173,7 +173,7 @@ std::optional<podio::CollectionReadBuffers> ROOTReader::getCollectionBuffers(ROO
173
174
root_utils::readBranchesData(branches, localEntry);
175
176
- return std::move(collBuffers);
+ return {std::move(collBuffers)};
177
178
179
ROOTReader::CategoryInfo& ROOTReader::getCategoryInfo(const std::string& category) {
0 commit comments