Skip to content

Commit 7c06726

Browse files
committed
Fix formatting
1 parent d7c44f0 commit 7c06726

File tree

454 files changed

+461
-461
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

454 files changed

+461
-461
lines changed

include/contractor/contract_excludable_graph.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,6 @@ inline auto contractExcludableGraph(ContractorGraph contractor_graph_,
9292
return GraphAndFilter{QueryGraph{num_nodes, edge_container.edges},
9393
edge_container.MakeEdgeFilters()};
9494
}
95-
} // namespace osrm
95+
} // namespace osrm::contractor
9696

9797
#endif

include/contractor/contracted_edge_container.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,6 @@ struct ContractedEdgeContainer
162162
std::vector<MergedFlags> flags;
163163
std::vector<QueryEdge> edges;
164164
};
165-
} // namespace osrm
165+
} // namespace osrm::contractor
166166

167167
#endif

include/contractor/contracted_metric.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ template <storage::Ownership Ownership> struct ContractedMetric
1717

1818
using ContractedMetric = detail::ContractedMetric<storage::Ownership::Container>;
1919
using ContractedMetricView = detail::ContractedMetric<storage::Ownership::View>;
20-
} // namespace osrm
20+
} // namespace osrm::contractor
2121

2222
#endif

include/contractor/contractor.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,6 @@ class Contractor
4747
private:
4848
ContractorConfig config;
4949
};
50-
} // namespace osrm
50+
} // namespace osrm::contractor
5151

5252
#endif // PROCESSING_CHAIN_HPP

include/contractor/contractor_config.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,6 @@ struct ContractorConfig final : storage::IOConfig
6969
//(e.g. 0.8 contracts 80 percent of the hierarchy, leaving a core of 20%)
7070
double core_factor = 1.0;
7171
};
72-
} // namespace osrm
72+
} // namespace osrm::contractor
7373

7474
#endif // EXTRACTOR_OPTIONS_HPP

include/contractor/contractor_graph.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,6 @@ struct ContractorEdgeData
4040
using ContractorGraph = util::DynamicGraph<ContractorEdgeData>;
4141
using ContractorEdge = ContractorGraph::InputEdge;
4242

43-
} // namespace osrm
43+
} // namespace osrm::contractor
4444

4545
#endif // OSRM_CONTRACTOR_CONTRACTOR_GRAPH_HPP_

include/contractor/contractor_heap.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ using ContractorHeap = util::QueryHeap<NodeID,
2222
ContractorHeapData,
2323
util::XORFastHashStorage<NodeID, NodeID>>;
2424

25-
} // namespace osrm
25+
} // namespace osrm::contractor
2626

2727
#endif // OSRM_CONTRACTOR_CONTRACTOR_HEAP_HPP_

include/contractor/contractor_search.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ void search(ContractorHeap &heap,
1818
const EdgeWeight weight_limit,
1919
const NodeID forbidden_node);
2020

21-
} // namespace osrm
21+
} // namespace osrm::contractor
2222

2323
#endif // OSRM_CONTRACTOR_DIJKSTRA_HPP

include/contractor/crc32_processor.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,6 @@ struct RangebasedCRC32
123123
private:
124124
IteratorbasedCRC32 crc32;
125125
};
126-
} // namespace osrm
126+
} // namespace osrm::contractor
127127

128128
#endif /* ITERATOR_BASED_CRC32_H */

include/contractor/files.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,6 @@ inline void writeGraph(const boost::filesystem::path &path,
4848
serialization::write(writer, "/ch/metrics/" + pair.first, pair.second);
4949
}
5050
}
51-
} // namespace osrm
51+
} // namespace osrm::contractor::files
5252

5353
#endif

0 commit comments

Comments
 (0)