Skip to content
Snippets Groups Projects
Commit 09b2b5be authored by Markus Holzer's avatar Markus Holzer
Browse files

Fixes Index Vector comparison

parent 8dfa7d51
Branches
Tags
No related merge requests found
Pipeline #38622 passed
......@@ -70,7 +70,7 @@ public:
};
IndexVectors() = default;
bool operator==(IndexVectors & other) { return other.cpuVectors_ == cpuVectors_; }
bool operator==(IndexVectors const &other) const { return other.cpuVectors_ == cpuVectors_; }
{% if target == 'gpu' -%}
~IndexVectors() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment