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
No related merge requests found
Pipeline #38622 passed with stages
in 1 hour, 57 minutes, and 37 seconds
......@@ -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% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment