From a2857d277abcab3d09cc6a23d3e2e6d9f3132004 Mon Sep 17 00:00:00 2001 From: Vladimir Chalupecky Date: Thu, 1 Jun 2017 21:38:53 +0200 Subject: [PATCH] matrix/mat64: remove unused const --- matrix/mat64/shadow.go | 1 - 1 file changed, 1 deletion(-) diff --git a/matrix/mat64/shadow.go b/matrix/mat64/shadow.go index 53355c6d..8061f33f 100644 --- a/matrix/mat64/shadow.go +++ b/matrix/mat64/shadow.go @@ -208,7 +208,6 @@ func rectanglesOverlap(off, aCols, bCols, stride int) bool { // Flatten the shifted matrix column positions // so a starts at 0, modulo the common stride. - const aFrom = 0 aTo := aCols // The mod stride operations here make the from // and to indexes comparable between a and b when