Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Jonas Plewinski
waLBerla
Commits
09b2b5be
Commit
09b2b5be
authored
Mar 23, 2022
by
Markus Holzer
Browse files
Fixes Index Vector comparison
parent
8dfa7d51
Changes
1
Hide whitespace changes
Inline
Side-by-side
python/pystencils_walberla/templates/Boundary.tmpl.h
View file @
09b2b5be
...
...
@@ -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
()
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment