Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Tiago Peixoto
graph-tool
Commits
f74932df
Commit
f74932df
authored
Jan 20, 2016
by
Tiago Peixoto
Browse files
Fix compilation error in clang
parent
9d0006a4
Pipeline
#100
failed with stage
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/graph/graph_adjacency.hh
View file @
f74932df
...
...
@@ -195,7 +195,8 @@ public:
friend
class
boost
::
iterator_core_access
;
void
increment
()
{
++
_iter
;
}
void
decrement
()
{
--
_iter
;
}
void
advance
(
auto
n
)
{
_iter
+=
n
;
}
template
<
class
Distance
>
void
advance
(
Distance
n
)
{
_iter
+=
n
;
}
auto
distance_to
(
base_edge_iterator
const
&
other
)
const
{
return
other
.
_iter
-
_iter
;
...
...
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