From 6801d6ff09979c092b7aca1281b76ba80ac26137 Mon Sep 17 00:00:00 2001 From: jeremy Date: Tue, 22 Nov 2022 14:49:54 +0100 Subject: [PATCH] Remove duplicate using statement --- src/storage/v3/request_helper.cpp | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/storage/v3/request_helper.cpp b/src/storage/v3/request_helper.cpp index 24c1f431f..73e6f86e5 100644 --- a/src/storage/v3/request_helper.cpp +++ b/src/storage/v3/request_helper.cpp @@ -173,17 +173,6 @@ std::optional, 2>> FillUpConnectingEdges( return std::array, 2>{std::move(in_edges), std::move(out_edges)}; } -using AllEdgePropertyDataSructure = std::map; -using SpecificEdgePropertyDataSructure = std::vector; - -using AllEdgeProperties = std::tuple; -using SpecificEdgeProperties = std::tuple; - -using SpecificEdgePropertiesVector = std::vector; -using AllEdgePropertiesVector = std::vector; - -using EdgeFiller = std::function; - template bool FillEdges(const std::vector &edges, msgs::ExpandOneResultRow &row, const EdgeFiller &edge_filler) { for (const auto &edge : edges) {