Skip to content

Commit

Permalink
Merge pull request #7851 from realm/js/benchmark-warning
Browse files Browse the repository at this point in the history
RCORE-2184 remove unused method now that FlatMap uses the < comparator
  • Loading branch information
ironage authored Jun 28, 2024
2 parents 98fe08e + 3552d08 commit 68f79ae
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/realm/sync/noinst/client_reset_recovery.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,6 @@ struct ListPath {
void append(const Element& item);
bool operator<(const ListPath& other) const noexcept;
bool operator==(const ListPath& other) const noexcept;
bool operator!=(const ListPath& other) const noexcept;
std::string path_to_string(Transaction& remote, const InterningBuffer& buffer);

using const_iterator = typename std::vector<Element>::const_iterator;
Expand Down Expand Up @@ -490,11 +489,6 @@ bool ListPath::operator==(const ListPath& other) const noexcept
return false;
}

bool ListPath::operator!=(const ListPath& other) const noexcept
{
return !(operator==(other));
}

std::string ListPath::path_to_string(Transaction& remote, const InterningBuffer& buffer)
{
TableRef remote_table = remote.get_table(m_table_key);
Expand Down

0 comments on commit 68f79ae

Please sign in to comment.