Fix formatting
This commit is contained in:
@@ -25,7 +25,7 @@ std::ostream &operator<<(std::ostream &out, const QueryEdge &edge)
|
||||
out << "{" << edge.source << ", " << edge.target << ", " << edge.data << "}";
|
||||
return out;
|
||||
}
|
||||
} // namespace osrm
|
||||
} // namespace osrm::contractor
|
||||
|
||||
BOOST_AUTO_TEST_SUITE(contracted_edge_container)
|
||||
|
||||
|
||||
@@ -36,6 +36,6 @@ inline contractor::ContractorGraph makeGraph(const std::vector<TestEdge> &edges)
|
||||
|
||||
return contractor::ContractorGraph{max_id + 1, input_edges};
|
||||
}
|
||||
} // namespace osrm
|
||||
} // namespace osrm::unit_test
|
||||
|
||||
#endif
|
||||
|
||||
@@ -12,7 +12,7 @@ namespace routing_algorithms::offline
|
||||
struct Algorithm final
|
||||
{
|
||||
};
|
||||
} // namespace routing_algorithms
|
||||
} // namespace routing_algorithms::offline
|
||||
|
||||
// Define engine data for offline data facade
|
||||
template <> struct SearchEngineData<routing_algorithms::offline::Algorithm>
|
||||
@@ -361,9 +361,9 @@ void unpackPath(const FacadeT &facade,
|
||||
mld::unpackPath(facade, packed_path_begin, packed_path_end, endpoints, unpacked_path);
|
||||
}
|
||||
|
||||
} // namespace routing_algorithms
|
||||
} // namespace routing_algorithms::offline
|
||||
|
||||
} // namespace osrm
|
||||
} // namespace osrm::engine
|
||||
|
||||
BOOST_AUTO_TEST_SUITE(offline_facade)
|
||||
|
||||
|
||||
@@ -258,6 +258,6 @@ class MockDataFacade final : public MockBaseDataFacade, public MockAlgorithmData
|
||||
{
|
||||
};
|
||||
|
||||
} // namespace osrm
|
||||
} // namespace osrm::test
|
||||
|
||||
#endif // MOCK_DATAFACADE_HPP
|
||||
|
||||
@@ -47,6 +47,6 @@ class MockScriptingEnvironment : public extractor::ScriptingEnvironment
|
||||
bool HasLocationDependentData() const override { return false; };
|
||||
};
|
||||
|
||||
} // namespace osrm
|
||||
} // namespace osrm::test
|
||||
|
||||
#endif // MOCK_SCRIPTING_ENVIRONMENT_HPP_
|
||||
|
||||
@@ -58,6 +58,6 @@ inline std::ostream &operator<<(std::ostream &out, Approach approach)
|
||||
out << static_cast<int>(approach);
|
||||
return out;
|
||||
}
|
||||
} // namespace osrm
|
||||
} // namespace osrm::engine
|
||||
|
||||
#endif
|
||||
|
||||
@@ -11,7 +11,7 @@ std::ostream &operator<<(std::ostream &out, const osrm::server::api::ParsedURL &
|
||||
|
||||
return out;
|
||||
}
|
||||
} // namespace osrm
|
||||
} // namespace osrm::server::api
|
||||
|
||||
#include <boost/test/test_tools.hpp>
|
||||
#include <boost/test/unit_test.hpp>
|
||||
|
||||
Reference in New Issue
Block a user