Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Sbalzarini Lab
S
Software
P
Parallel Computing
OpenFPM
openfpm_data
Commits
6c458d31
Commit
6c458d31
authored
Dec 15, 2021
by
incardon
Browse files
Fixing const auto
parent
b8aad3a2
Pipeline
#4027
passed with stages
in 22 minutes and 51 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/Grid/cuda/map_grid_cuda_ker.cuh
View file @
6c458d31
...
...
@@ -533,7 +533,7 @@ public:
}
template
<
typename
Tk
>
__device__
inline
const
auto
get_o
(
const
grid_key_dx
<
dim
,
Tk
>
&
v1
)
const
->
decltype
(
ggk
.
get_o
(
v1
))
__device__
inline
auto
get_o
(
const
grid_key_dx
<
dim
,
Tk
>
&
v1
)
const
->
decltype
(
ggk
.
get_o
(
v1
))
{
return
ggk
.
get_o
(
v1
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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