Skip to content

Commit

Permalink
Update DataTable
Browse files Browse the repository at this point in the history
  • Loading branch information
morzhovets committed Jul 16, 2024
1 parent 43fdf55 commit 81bf596
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions include/momo/DataTable.h
Original file line number Diff line number Diff line change
Expand Up @@ -1368,6 +1368,12 @@ class DataTable
VersionKeeper(&mCrew.GetRemoveVersion()));
}

template<typename Result, typename RowFilter> // vs2015
Result pvSelect(const Equalities<>& /*equals*/, const RowFilter& rowFilter) const
{
return pvSelect<Result>(rowFilter);
}

template<typename Result, typename... Items, typename RowFilter>
Result pvSelect(const Equalities<Items...>& equals, const RowFilter& rowFilter) const
{
Expand Down

0 comments on commit 81bf596

Please sign in to comment.