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
solverstack
ScalFMM
Commits
d69e6a09
Commit
d69e6a09
authored
Sep 22, 2016
by
Quentin Khan
Browse files
Change constructor to take pointers instead of references
This is done to make constructors consistent accross the algorithms.
parent
695b4b79
Changes
1
Hide whitespace changes
Inline
Side-by-side
Src/Adaptive/new/FAdaptiveStarPU.hpp
View file @
d69e6a09
...
...
@@ -48,9 +48,9 @@ private:
public:
FAdaptiveStarPU
(
tree_t
&
tree
,
kernel_t
&
kernel
)
:
_tree
(
tree
),
_ref_kernel
(
kernel
),
FAdaptiveStarPU
(
tree_t
*
tree
,
kernel_t
*
kernel
)
:
_tree
(
*
tree
),
_ref_kernel
(
*
kernel
),
_kernels
()
{}
...
...
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