remove CRTP leftovers in search algorithms
This commit is contained in:
committed by
Patrick Niklaus
parent
a48cf58468
commit
8c36012653
@@ -20,10 +20,9 @@ namespace routing_algorithms
|
||||
{
|
||||
|
||||
template <class DataFacadeT>
|
||||
class ManyToManyRouting final
|
||||
: public BasicRoutingInterface<DataFacadeT, ManyToManyRouting<DataFacadeT>>
|
||||
class ManyToManyRouting final : public BasicRoutingInterface<DataFacadeT>
|
||||
{
|
||||
using super = BasicRoutingInterface<DataFacadeT, ManyToManyRouting<DataFacadeT>>;
|
||||
using super = BasicRoutingInterface<DataFacadeT>;
|
||||
using QueryHeap = SearchEngineData::QueryHeap;
|
||||
SearchEngineData &engine_working_data;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user