diff --git a/Contractor/EdgeBasedGraphFactory.cpp b/Contractor/EdgeBasedGraphFactory.cpp index 6ac7ccd97..9a033bbe7 100644 --- a/Contractor/EdgeBasedGraphFactory.cpp +++ b/Contractor/EdgeBasedGraphFactory.cpp @@ -438,7 +438,7 @@ void EdgeBasedGraphFactory::CompressGeometry() } /** - * Writes the id of the edge in the edge expanded graph (into the egde in the node based graph) + * Writes the id of the edge in the edge expanded graph (into the edge in the node based graph) */ void EdgeBasedGraphFactory::RenumberEdges() { diff --git a/Server/DataStructures/InternalDataFacade.h b/Server/DataStructures/InternalDataFacade.h index 5f0a2517b..f2789119d 100644 --- a/Server/DataStructures/InternalDataFacade.h +++ b/Server/DataStructures/InternalDataFacade.h @@ -68,7 +68,7 @@ template class InternalDataFacade : public BaseDataFacade::vector m_turn_instruction_list; ShM::vector m_travel_mode_list; ShM::vector m_names_char_list; - ShM::vector m_egde_is_compressed; + ShM::vector m_edge_is_compressed; ShM::vector m_geometry_indices; ShM::vector m_geometry_list; @@ -147,7 +147,7 @@ template class InternalDataFacade : public BaseDataFacade class InternalDataFacade : public BaseDataFacade class InternalDataFacade : public BaseDataFacade class InternalDataFacade : public BaseDataFacadeat(id); }; - bool EdgeIsCompressed(const unsigned id) const { return m_egde_is_compressed.at(id); } + bool EdgeIsCompressed(const unsigned id) const { return m_edge_is_compressed.at(id); } TurnInstruction GetTurnInstructionForEdgeID(const unsigned id) const final { diff --git a/Server/DataStructures/SharedDataFacade.h b/Server/DataStructures/SharedDataFacade.h index 89e8137cb..c369cd876 100644 --- a/Server/DataStructures/SharedDataFacade.h +++ b/Server/DataStructures/SharedDataFacade.h @@ -80,7 +80,7 @@ template class SharedDataFacade : public BaseDataFacade::vector m_travel_mode_list; ShM::vector m_names_char_list; ShM::vector m_name_begin_indices; - ShM::vector m_egde_is_compressed; + ShM::vector m_edge_is_compressed; ShM::vector m_geometry_indices; ShM::vector m_geometry_list; @@ -200,10 +200,10 @@ template class SharedDataFacade : public BaseDataFacadeGetBlockPtr( shared_memory, SharedDataLayout::GEOMETRIES_INDICATORS); - typename ShM::vector egde_is_compressed( + typename ShM::vector edge_is_compressed( geometries_compressed_ptr, data_layout->num_entries[SharedDataLayout::GEOMETRIES_INDICATORS]); - m_egde_is_compressed.swap(egde_is_compressed); + m_edge_is_compressed.swap(edge_is_compressed); unsigned *geometries_index_ptr = data_layout->GetBlockPtr(shared_memory, SharedDataLayout::GEOMETRIES_INDEX); @@ -330,7 +330,7 @@ template class SharedDataFacade : public BaseDataFacade