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
Olena
pylene
Commits
ecafcfd0
Commit
ecafcfd0
authored
Mar 21, 2018
by
Michaël Roynard
Browse files
Fix unused member variable warning (clang 6)
parent
c10bc0d2
Changes
1
Hide whitespace changes
Inline
Side-by-side
mln/draw/range/line2d.hpp
View file @
ecafcfd0
...
...
@@ -34,7 +34,7 @@ namespace mln
line2d_iterator
(
const
point2d
&
pbegin
,
const
point2d
&
pend
)
:
m_pbegin
(
pbegin
),
m_pend
(
pend
)
{
point2d
dp
=
pend
-
pbegin
;
point2d
dp
=
m_
pend
-
m_
pbegin
;
m_octhan
=
false
;
if
(
std
::
abs
(
dp
[
1
])
<
std
::
abs
(
dp
[
0
]))
{
...
...
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