Skip to content

Commit 616bfb2

Browse files
mytkomsaganatt
authored andcommitted
backward compatibility for binning policy
1 parent 911008c commit 616bfb2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Framework/Core/include/Framework/BinningPolicy.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ struct FlexibleBinningPolicy<std::tuple<Ls...>, Ts...> : BinningPolicyBase<sizeo
260260
}
261261

262262
template <typename T>
263-
auto getBinningValues(typename T::iterator rowIterator, uint64_t globalIndex = -1) const
263+
auto getBinningValues(typename T::iterator rowIterator, T& table, uint64_t globalIndex = -1) const
264264
{
265265
return getBinningValues(rowIterator, globalIndex);
266266
}
@@ -315,7 +315,7 @@ struct NoBinningPolicy {
315315
}
316316

317317
template <typename T>
318-
auto getBinningValues(typename T::iterator rowIterator, uint64_t globalIndex = -1) const
318+
auto getBinningValues(typename T::iterator rowIterator, T& table, uint64_t globalIndex = -1) const
319319
{
320320
return getBinningValues(rowIterator, globalIndex);
321321
}

0 commit comments

Comments
 (0)