Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
graph-tool
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
44
Issues
44
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Tiago Peixoto
graph-tool
Commits
f74932df
Commit
f74932df
authored
Jan 20, 2016
by
Tiago Peixoto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix compilation error in clang
parent
9d0006a4
Pipeline
#100
failed with stage
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
src/graph/graph_adjacency.hh
src/graph/graph_adjacency.hh
+2
-1
No files found.
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
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