Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions include/boost/graph/stanford_graph.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ extern "C"
#include <gb_games.h> /* graphs based on football scores */
#undef ap /* avoid name clash with BGL parameter */
// ap ==> Vertex::u.I
#undef MAX_N /* redefinition in gb_miles.h below; unused */
#include <gb_gates.h> /* graphs based on logic circuits */
#undef val /* avoid name clash with g++ headerfile stl_tempbuf.h */
// val ==> Vertex::x.I
Expand Down Expand Up @@ -401,26 +402,26 @@ class sgb_edge_util_map

template < class Tag >
inline sgb_vertex_util_map< Tag, const typename Tag::type& > get_property_map(
Tag, const sgb_graph_ptr& g, vertex_property_tag)
Tag, const sgb_graph_ptr&, vertex_property_tag)
{
return sgb_vertex_util_map< Tag, const typename Tag::type& >();
}
template < class Tag >
inline sgb_vertex_util_map< Tag, typename Tag::type& > get_property_map(
Tag, sgb_graph_ptr& g, vertex_property_tag)
Tag, sgb_graph_ptr&, vertex_property_tag)
{
return sgb_vertex_util_map< Tag, typename Tag::type& >();
}

template < class Tag >
inline sgb_edge_util_map< Tag, const typename Tag::type& > get_property_map(
Tag, const sgb_graph_ptr& g, edge_property_tag)
Tag, const sgb_graph_ptr&, edge_property_tag)
{
return sgb_edge_util_map< Tag, const typename Tag::type& >();
}
template < class Tag >
inline sgb_edge_util_map< Tag, typename Tag::type& > get_property_map(
Tag, sgb_graph_ptr& g, edge_property_tag)
Tag, sgb_graph_ptr&, edge_property_tag)
{
return sgb_edge_util_map< Tag, typename Tag::type& >();
}
Expand Down
Loading