@@ -509,18 +509,17 @@ ROOT::Internal::RPageSourceFile::PrepareSingleCluster(const RCluster::RKey &clus
509509 std::vector<ROnDiskPageLocator> onDiskPages;
510510 auto activeSize = 0 ;
511511 auto pageZeroMap = std::make_unique<ROnDiskPageMap>();
512- PrepareLoadCluster (clusterKey, *pageZeroMap,
513- [&](ROOT::DescriptorId_t physicalColumnId, ROOT::NTupleSize_t pageNo,
514- const ROOT::RClusterDescriptor::RPageInfo &pageInfo) {
515- const auto &pageLocator = pageInfo.GetLocator ();
516- if (pageLocator.GetType () == RNTupleLocator::kTypeUnknown )
517- throw RException (R__FAIL (" tried to read a page with an unknown locator" ));
518- const auto nBytes =
519- pageLocator.GetNBytesOnStorage () + pageInfo.HasChecksum () * kNBytesPageChecksum ;
520- activeSize += nBytes;
521- onDiskPages.push_back (
522- {physicalColumnId, pageNo, pageLocator.GetPosition <std::uint64_t >(), nBytes, 0 });
523- });
512+ PrepareLoadCluster (
513+ clusterKey, *pageZeroMap,
514+ [&](ROOT::DescriptorId_t physicalColumnId, ROOT::NTupleSize_t pageNo,
515+ const ROOT::RClusterDescriptor::RPageInfo &pageInfo) {
516+ const auto &pageLocator = pageInfo.GetLocator ();
517+ if (pageLocator.GetType () == RNTupleLocator::kTypeUnknown )
518+ throw RException (R__FAIL (" tried to read a page with an unknown locator" ));
519+ const auto nBytes = pageLocator.GetNBytesOnStorage () + pageInfo.HasChecksum () * kNBytesPageChecksum ;
520+ activeSize += nBytes;
521+ onDiskPages.push_back ({physicalColumnId, pageNo, pageLocator.GetPosition <std::uint64_t >(), nBytes, 0 });
522+ });
524523
525524 // Linearize the page requests by file offset
526525 std::sort (onDiskPages.begin (), onDiskPages.end (),
0 commit comments