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
0097e2ba
Commit
0097e2ba
authored
Apr 14, 2008
by
Tiago Peixoto
Browse files
Fix GCC 4.3 compilation error
GCC 4.3 complains when a typedef overrides the meaning of another type.
parent
5e32b3b6
Changes
1
Show whitespace changes
Inline
Side-by-side
src/graph/graph_filtering.hh
View file @
0097e2ba
...
...
@@ -190,7 +190,7 @@ struct graph_filter
typedef
filtered_graph
<
Graph
,
edge_predicate
,
vertex_predicate
>
filtered_graph
;
vertex_predicate
>
filtered_graph
_t
;
// If both predicates are keep_all, then return the original graph
// type. Otherwise return the filtered_graph type.
...
...
@@ -202,7 +202,7 @@ struct graph_filter
keep_all
>
>::
type
,
Graph
,
filtered_graph
>::
type
type
;
filtered_graph
_t
>::
type
type
;
};
};
...
...
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