Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
OpenWalnut
OpenWalnut Modules
Commits
58527729
Commit
58527729
authored
Mar 01, 2017
by
Alexander Wiebel
Browse files
[FIX] fixed code according to warning to eliminate warning
parent
fae4e864
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
LiDARToolbox/src/common/datastructures/octree/WOctNode.cpp
LiDARToolbox/src/common/datastructures/octree/WOctNode.cpp
+1
-1
LiDARToolbox/src/common/datastructures/quadtree/WQuadNode.cpp
...RToolbox/src/common/datastructures/quadtree/WQuadNode.cpp
+1
-1
No files found.
LiDARToolbox/src/common/datastructures/octree/WOctNode.cpp
View file @
58527729
...
@@ -167,7 +167,7 @@ size_t WOctNode::getTotalNodeCount()
...
@@ -167,7 +167,7 @@ size_t WOctNode::getTotalNodeCount()
void
WOctNode
::
touchPosition
(
double
x
,
double
y
,
double
z
)
void
WOctNode
::
touchPosition
(
double
x
,
double
y
,
double
z
)
{
{
if
(
!
m_pointCount
>
0
)
if
(
!
(
m_pointCount
>
0
)
)
{
{
m_xMin
=
m_xMax
=
x
;
m_xMin
=
m_xMax
=
x
;
m_yMin
=
m_yMax
=
y
;
m_yMin
=
m_yMax
=
y
;
...
...
LiDARToolbox/src/common/datastructures/quadtree/WQuadNode.cpp
View file @
58527729
...
@@ -117,7 +117,7 @@ double WQuadNode::getCenter( size_t dimension )
...
@@ -117,7 +117,7 @@ double WQuadNode::getCenter( size_t dimension )
void
WQuadNode
::
updateMinMax
(
double
x
,
double
y
,
double
value
)
void
WQuadNode
::
updateMinMax
(
double
x
,
double
y
,
double
value
)
{
{
if
(
!
m_pointCount
>
0
)
if
(
!
(
m_pointCount
>
0
)
)
{
{
m_xMin
=
m_xMax
=
x
;
m_xMin
=
m_xMax
=
x
;
m_yMin
=
m_yMax
=
y
;
m_yMin
=
m_yMax
=
y
;
...
...
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