From 12afe719ce268bb10aa93a910079a44eb08999b8 Mon Sep 17 00:00:00 2001 From: MZuenni Date: Wed, 1 Mar 2023 11:36:26 +0100 Subject: removed trailing whitespaces and use more structured bindings --- graph/minCostMaxFlow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'graph/minCostMaxFlow.cpp') diff --git a/graph/minCostMaxFlow.cpp b/graph/minCostMaxFlow.cpp index 46d444c..27f6b34 100644 --- a/graph/minCostMaxFlow.cpp +++ b/graph/minCostMaxFlow.cpp @@ -12,7 +12,7 @@ struct MinCostFlow { const int s, t; ll maxflow, mincost; - MinCostFlow(int n, int source, int target) : + MinCostFlow(int n, int source, int target) : adjlist(n), s(source), t(target) {}; void addedge(int u, int v, ll c, ll cost) { -- cgit v1.2.3