From 14ff63a327f53d03f9226dc319578b13ba7a3906 Mon Sep 17 00:00:00 2001 From: Rui Ueyama Date: Thu, 28 Jan 2021 13:14:16 +0900 Subject: [PATCH] wip --- icf.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/icf.cc b/icf.cc index 7da7f5a1..c374c8aa 100644 --- a/icf.cc +++ b/icf.cc @@ -107,8 +107,8 @@ struct Entry { Digest digest; }; -static void gather_sections(std::vector §ions, - std::vector &digests, +static void gather_sections(std::vector &digests, + std::vector §ions, std::vector &edges, std::vector &edge_indices) { Timer t("gather"); @@ -208,12 +208,12 @@ void icf_sections() { Timer t("icf"); // Prepare for the propagation rounds. - std::vector sections; std::vector digests0; + std::vector sections; std::vector edges; std::vector edge_indices; - gather_sections(sections, digests0, edges, edge_indices); + gather_sections(digests0, sections, edges, edge_indices); Timer t2("propagate"); std::vector> digests(2);