Remove usage of StringView typedef
This commit is contained in:
@@ -203,7 +203,7 @@ class ContiguousInternalMemoryDataFacade<routing_algorithms::offline::Algorithm>
|
||||
return DatasourceReverseRange(DatasourceForwardRange());
|
||||
}
|
||||
|
||||
StringView GetDatasourceName(const DatasourceID /*id*/) const override { return StringView{}; }
|
||||
std::string_view GetDatasourceName(const DatasourceID /*id*/) const override { return std::string_view{}; }
|
||||
|
||||
guidance::TurnInstruction GetTurnInstructionForEdgeID(const EdgeID /*id*/) const override
|
||||
{
|
||||
@@ -270,11 +270,11 @@ class ContiguousInternalMemoryDataFacade<routing_algorithms::offline::Algorithm>
|
||||
|
||||
bool HasLaneData(const EdgeID /*id*/) const override { return false; }
|
||||
NameID GetNameIndex(const NodeID /*nodeID*/) const override { return EMPTY_NAMEID; }
|
||||
StringView GetNameForID(const NameID /*id*/) const override { return StringView{}; }
|
||||
StringView GetRefForID(const NameID /*id*/) const override { return StringView{}; }
|
||||
StringView GetPronunciationForID(const NameID /*id*/) const override { return StringView{}; }
|
||||
StringView GetDestinationsForID(const NameID /*id*/) const override { return StringView{}; }
|
||||
StringView GetExitsForID(const NameID /*id*/) const override { return StringView{}; }
|
||||
std::string_view GetNameForID(const NameID /*id*/) const override { return std::string_view{}; }
|
||||
std::string_view GetRefForID(const NameID /*id*/) const override { return std::string_view{}; }
|
||||
std::string_view GetPronunciationForID(const NameID /*id*/) const override { return std::string_view{}; }
|
||||
std::string_view GetDestinationsForID(const NameID /*id*/) const override { return std::string_view{}; }
|
||||
std::string_view GetExitsForID(const NameID /*id*/) const override { return std::string_view{}; }
|
||||
bool GetContinueStraightDefault() const override { return false; }
|
||||
std::string GetTimestamp() const override { return ""; }
|
||||
double GetMapMatchingMaxSpeed() const override { return 0; }
|
||||
|
||||
Reference in New Issue
Block a user