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
c9621bc6
Commit
c9621bc6
authored
Oct 23, 2009
by
Tiago Peixoto
Browse files
Fix problem with property types
Some property typles wrongly included the index map, when they shouldn't.
parent
19b68a13
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/graph/graph_selectors.hh
View file @
c9621bc6
...
...
@@ -370,11 +370,13 @@ typedef property_map_types::apply<floating_types,
vertex_floating_properties
;
typedef
property_map_types
::
apply
<
scalar_vector_types
,
GraphInterface
::
vertex_index_map_t
>::
type
GraphInterface
::
vertex_index_map_t
,
mpl
::
bool_
<
false
>
>::
type
vertex_scalar_vector_properties
;
typedef
property_map_types
::
apply
<
integer_vector_types
,
GraphInterface
::
vertex_index_map_t
>::
type
GraphInterface
::
vertex_index_map_t
,
mpl
::
bool_
<
false
>
>::
type
vertex_integer_vector_properties
;
typedef
property_map_types
::
apply
<
floating_vector_types
,
...
...
@@ -401,11 +403,13 @@ typedef property_map_types::apply<floating_types,
edge_floating_properties
;
typedef
property_map_types
::
apply
<
scalar_vector_types
,
GraphInterface
::
edge_index_map_t
>::
type
GraphInterface
::
edge_index_map_t
,
mpl
::
bool_
<
false
>
>::
type
edge_scalar_vector_properties
;
typedef
property_map_types
::
apply
<
integer_vector_types
,
GraphInterface
::
edge_index_map_t
>::
type
GraphInterface
::
edge_index_map_t
,
mpl
::
bool_
<
false
>
>::
type
edge_integer_vector_properties
;
typedef
property_map_types
::
apply
<
floating_vector_types
,
...
...
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