summaryrefslogtreecommitdiff
path: root/patches/igor-fix-missing-return.patch
diff options
context:
space:
mode:
authorGhislain Vaillant <ghislain.vaillant@inria.fr>2026-06-10 11:12:09 +0200
committerGhislain Vaillant <ghislain.vaillant@inria.fr>2026-06-25 09:37:12 +0200
commitcd780d3f6cf6a4a689c7c1e998e515cff7ca8842 (patch)
tree2ceea0bf74b50c9acfbdb2d9a40bb7c2d6025083 /patches/igor-fix-missing-return.patch
parent41702d2ee45095101c9a890c776d8094585c7944 (diff)
bioinformatics: Add igor.
* guix-science/packages/bioinformatics.scm (igor): New variable. * patches/igor-fix-missing-return.patch: Add patch for igor.
Diffstat (limited to 'patches/igor-fix-missing-return.patch')
-rw-r--r--patches/igor-fix-missing-return.patch22
1 files changed, 22 insertions, 0 deletions
diff --git a/patches/igor-fix-missing-return.patch b/patches/igor-fix-missing-return.patch
new file mode 100644
index 0000000..357cfb2
--- /dev/null
+++ b/patches/igor-fix-missing-return.patch
@@ -0,0 +1,22 @@
1From b54cb6f4ebf513c4451f50d4c99e924800e50aac Mon Sep 17 00:00:00 2001
2From: mchernigovskaya <masha.chernigovskaya@gmail.com>
3Date: Fri, 29 Apr 2022 19:29:21 +0200
4Subject: [PATCH] Update Utils.h
5
6fix matrix assignment operator
7---
8 igor_src/Utils.h | 1 +
9 1 file changed, 1 insertion(+)
10
11diff --git a/igor_src/Utils.h b/igor_src/Utils.h
12index 23fbea39..ffc6a571 100644
13--- a/igor_src/Utils.h
14+++ b/igor_src/Utils.h
15@@ -139,6 +139,7 @@ template<typename T> struct Matrix {
16 for(int i = 0 ; i != rows*cols ; i++){
17 this->array_p[i] = other.array_p[i];
18 }
19+ return *this;
20 }
21
22 T& operator()(const int& i ,const int& j ){