From 880dc969a222b7f99005a3cbb84a2aab4a8f76a7 Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Mon, 11 Mar 2019 10:35:35 +0100 Subject: ell_grid_solve: remove unused variable --- ell_grid_solve.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/ell_grid_solve.c b/ell_grid_solve.c index cc2d7e4..cbb7d68 100644 --- a/ell_grid_solve.c +++ b/ell_grid_solve.c @@ -153,8 +153,6 @@ static void boundaries_apply_falloff(double *dst, const ptrdiff_t dst_stride[2], const double *src, ptrdiff_t src_stride, size_t boundary_size, EGSContext *ctx) { - EGSInternal *priv = ctx->priv; - for (ptrdiff_t bnd_layer = 1; bnd_layer <= ctx->fd_stencil; bnd_layer++) for (ptrdiff_t bnd_idx = -(ptrdiff_t)ctx->fd_stencil; bnd_idx < (ptrdiff_t)(boundary_size + ctx->fd_stencil); bnd_idx++) { const double x = ctx->step[0] * (ctx->domain_size[0] - 1 + bnd_layer - ctx->fd_stencil); -- cgit v1.2.3