Skip to content

Commit 8785210

Browse files
committed
fix style check issues
1 parent fe78038 commit 8785210

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

include/ordering/sloanOrdering.hpp

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -53,21 +53,21 @@ namespace pgrouting {
5353
template <class G>
5454
std::vector<int64_t>
5555
sloanOrdering(G &graph) {
56-
typedef boost::adjacency_list<
57-
boost::vecS,
58-
boost::vecS,
59-
boost::undirectedS,
60-
boost::property<boost::vertex_color_t, boost::default_color_type,
61-
boost::property<boost::vertex_degree_t, int,
62-
boost::property<boost::vertex_priority_t, int>>>> GraphType;
56+
typedef boost::adjacency_list<
57+
boost::vecS,
58+
boost::vecS,
59+
boost::undirectedS,
60+
boost::property<boost::vertex_color_t, boost::default_color_type,
61+
boost::property<boost::vertex_degree_t, int,
62+
boost::property<boost::vertex_priority_t, int>>>> GraphType;
6363
typedef typename boost::graph_traits<typename G::graph_t>::vertex_descriptor Vertex;
6464
std::vector<int64_t>results;
6565

6666
auto i_map = boost::get(boost::vertex_index, graph.graph);
6767
auto color_map = boost::get(boost::vertex_color, graph.graph);
6868
auto degree_map = boost::make_degree_map(graph.graph);
6969
auto priority_map = boost::get(boost::vertex_priority, graph.graph);
70-
70+
7171
std::vector<Vertex> inv_perm(boost::num_vertices(graph.graph));
7272

7373
CHECK_FOR_INTERRUPTS();

0 commit comments

Comments
 (0)