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
fdf7b485
Commit
fdf7b485
authored
Feb 28, 2013
by
Tiago Peixoto
Browse files
Remove compilation warnings in graph_components.hh
parent
2a21ab19
Changes
1
Show whitespace changes
Inline
Side-by-side
src/graph/topology/graph_components.hh
View file @
fdf7b485
...
...
@@ -113,14 +113,14 @@ struct label_components
template
<
class
Graph
,
class
CompMap
>
void
get_components
(
Graph
&
g
,
CompMap
comp_map
,
boost
::
true_type
is_directed
)
const
boost
::
true_type
)
const
{
boost
::
strong_components
(
g
,
comp_map
);
}
template
<
class
Graph
,
class
CompMap
>
void
get_components
(
Graph
&
g
,
CompMap
comp_map
,
boost
::
false_type
is_directed
)
const
boost
::
false_type
)
const
{
boost
::
connected_components
(
g
,
comp_map
);
}
...
...
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