From 5a3bcc7ef1898761ce846cb18f04c017243b9da1 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Fri, 25 Apr 2025 14:27:43 +0200 Subject: [PATCH] const in get_column --- hyperpoint.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hyperpoint.cpp b/hyperpoint.cpp index 6d298dbe..09005603 100644 --- a/hyperpoint.cpp +++ b/hyperpoint.cpp @@ -996,7 +996,7 @@ EX void set_column(transmatrix& T, int i, const hyperpoint& H) { T[j][i] = H[j]; } -EX hyperpoint get_column(transmatrix& T, int i) { +EX hyperpoint get_column(const transmatrix& T, int i) { hyperpoint h; for(int j=0; j