Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
solverstack
ScalFMM
Commits
1c492c26
Commit
1c492c26
authored
Jul 06, 2014
by
COULAUD Olivier
Browse files
remove warnings
parent
2397fc7e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Src/Kernels/Chebyshev/FChebInterpolator.hpp
View file @
1c492c26
...
...
@@ -387,7 +387,7 @@ public:
// allocate 8 arrays per level
ChildParentInterpolator
=
new
FReal
**
[
TreeHeight
];
for
(
unsigned
int
l
=
0
;
l
<
TreeHeight
;
++
l
){
for
(
unsigned
int
l
=
0
;
l
<
static_cast
<
unsigned
int
>
(
TreeHeight
)
;
++
l
){
ChildParentInterpolator
[
l
]
=
new
FReal
*
[
8
];
for
(
unsigned
int
c
=
0
;
c
<
8
;
++
c
)
ChildParentInterpolator
[
l
][
c
]
=
nullptr
;
...
...
@@ -420,7 +420,7 @@ public:
*/
~
FChebInterpolator
()
{
for
(
unsigned
int
l
=
0
;
l
<
TreeHeight
;
++
l
)
for
(
unsigned
int
l
=
0
;
l
<
static_cast
<
unsigned
int
>
(
TreeHeight
)
;
++
l
)
for
(
unsigned
int
child
=
0
;
child
<
8
;
++
child
)
if
(
ChildParentInterpolator
[
l
][
child
]
!=
nullptr
)
delete
[]
ChildParentInterpolator
[
l
][
child
];
...
...
Write
Preview
Supports
Markdown
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