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
449fca38
Commit
449fca38
authored
Feb 14, 2018
by
incardon
Browse files
Fixing conversion to unsigned int
parent
d4dd1167
Changes
1
Show whitespace changes
Inline
Side-by-side
src/NN/CellList/CellList.hpp
View file @
449fca38
...
...
@@ -921,7 +921,7 @@ public:
* \return the symmetric neighborhood
*
*/
const
NNc_array
<
dim
,
openfpm
::
math
::
pow
(
3
,
dim
)
/
2
+
1
>
&
getNNc_sym
()
const
const
NNc_array
<
dim
,
(
unsigned
int
)
openfpm
::
math
::
pow
(
3
,
dim
)
/
2
+
1
>
&
getNNc_sym
()
const
{
return
NNc_sym
;
}
...
...
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