From: Magnus Jacobsson Date: Sun, 8 Nov 2020 08:23:20 +0000 (+0100) Subject: Remove 1 -Wself-assign warning in edge_bundling.c X-Git-Tag: 2.46.0~11^2~6 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f1ae093f94c6cd493e3c24f8c88d40e276e9ff70;p=graphviz Remove 1 -Wself-assign warning in edge_bundling.c --- diff --git a/lib/mingle/edge_bundling.c b/lib/mingle/edge_bundling.c index e708ddb0a..211336120 100644 --- a/lib/mingle/edge_bundling.c +++ b/lib/mingle/edge_bundling.c @@ -813,7 +813,7 @@ pedge* edge_bundling(SparseMatrix A0, int dim, real *x, int maxit_outer, real K, } } else if (method == METHOD_NONE){ - edges = edges; + ; } else { assert(0); }