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
669e3448
Commit
669e3448
authored
Mar 11, 2018
by
Tiago Peixoto
Browse files
Fix compilation warning
parent
5c370c56
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/graph/graph_adaptor.hh
View file @
669e3448
...
...
@@ -226,8 +226,8 @@ _all_edges_out(typename graph_traits<undirected_adaptor<Graph>>::vertex_descript
template
<
class
Graph
>
inline
__attribute__
((
always_inline
))
__attribute__
((
flatten
))
auto
in_edges
(
typename
graph_traits
<
undirected_adaptor
<
Graph
>>::
vertex_descriptor
u
,
const
undirected_adaptor
<
Graph
>&
g
)
in_edges
(
typename
graph_traits
<
undirected_adaptor
<
Graph
>>::
vertex_descriptor
,
const
undirected_adaptor
<
Graph
>&
)
{
typedef
typename
graph_traits
<
undirected_adaptor
<
Graph
>>::
in_edge_iterator
iter_t
;
...
...
@@ -341,8 +341,8 @@ out_degree(typename graph_traits<undirected_adaptor<Graph> >::vertex_descriptor
template
<
class
Graph
>
inline
__attribute__
((
always_inline
))
__attribute__
((
flatten
))
auto
in_degree
(
typename
graph_traits
<
undirected_adaptor
<
Graph
>
>::
vertex_descriptor
u
,
const
undirected_adaptor
<
Graph
>&
g
)
in_degree
(
typename
graph_traits
<
undirected_adaptor
<
Graph
>
>::
vertex_descriptor
,
const
undirected_adaptor
<
Graph
>&
)
{
return
0
;
}
...
...
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