Skip to content
Snippets Groups Projects
Commit 58506005 authored by Jonas Plewinski's avatar Jonas Plewinski
Browse files

Merge branch 'IndexVectorComparision' into 'master'

[BugFix] Index Vector comparison

See merge request walberla/walberla!533
parents 8dfa7d51 09b2b5be
Branches
No related merge requests found
......@@ -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