Skip to content

Commit a80940a

Browse files
authored
Update ASoA.h
1 parent a664427 commit a80940a

File tree

1 file changed

+3
-3
lines changed
  • Framework/Core/include/Framework

1 file changed

+3
-3
lines changed

Framework/Core/include/Framework/ASoA.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1505,7 +1505,7 @@ auto doSliceBy(T const* table, o2::framework::PresliceBase<C, Policy, OPT> const
15051505
{
15061506
if constexpr (OPT) {
15071507
if (container.isMissing()) {
1508-
missingOptionalPreslice(getLabelFromType<std::decay_t<T>>().data(), container.bindingKey.second.c_str());
1508+
missingOptionalPreslice(getLabelFromType<std::decay_t<T>>().data(), container.bindingKey.key.c_str());
15091509
}
15101510
}
15111511
uint64_t offset = 0;
@@ -1542,7 +1542,7 @@ auto doSliceBy(T const* table, o2::framework::PresliceBase<C, Policy, OPT> const
15421542
{
15431543
if constexpr (OPT) {
15441544
if (container.isMissing()) {
1545-
missingOptionalPreslice(getLabelFromType<std::decay_t<T>>().data(), container.bindingKey.second.c_str());
1545+
missingOptionalPreslice(getLabelFromType<std::decay_t<T>>().data(), container.bindingKey.key.c_str());
15461546
}
15471547
}
15481548
auto selection = container.getSliceFor(value);
@@ -1571,7 +1571,7 @@ auto doFilteredSliceBy(T const* table, o2::framework::PresliceBase<C, framework:
15711571
{
15721572
if constexpr (OPT) {
15731573
if (container.isMissing()) {
1574-
missingOptionalPreslice(getLabelFromType<T>().data(), container.bindingKey.second.c_str());
1574+
missingOptionalPreslice(getLabelFromType<T>().data(), container.bindingKey.key.c_str());
15751575
}
15761576
}
15771577
uint64_t offset = 0;

0 commit comments

Comments
 (0)