Skip to content

Commit

Permalink
Add an explicit instantiation of Table::find_first for BinaryData.
Browse files Browse the repository at this point in the history
Other explicit instantiations were added in #2624, but `BinaryData` was
overlooked.
  • Loading branch information
bdash committed Aug 28, 2017
1 parent 3387afc commit 2d09758
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/realm/table.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3975,6 +3975,7 @@ template size_t Table::find_first(size_t col_ndx, float) const;
template size_t Table::find_first(size_t col_ndx, double) const;
template size_t Table::find_first(size_t col_ndx, util::Optional<bool>) const;
template size_t Table::find_first(size_t col_ndx, util::Optional<int64_t>) const;
template size_t Table::find_first(size_t col_ndx, BinaryData) const;

} // namespace realm

Expand Down

0 comments on commit 2d09758

Please sign in to comment.