aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sci-biology/bowtie/files/bowtie-1.2.2-fix-Intel-compilation.patch')
-rw-r--r--sci-biology/bowtie/files/bowtie-1.2.2-fix-Intel-compilation.patch32
1 files changed, 0 insertions, 32 deletions
diff --git a/sci-biology/bowtie/files/bowtie-1.2.2-fix-Intel-compilation.patch b/sci-biology/bowtie/files/bowtie-1.2.2-fix-Intel-compilation.patch
deleted file mode 100644
index 75942efb5..000000000
--- a/sci-biology/bowtie/files/bowtie-1.2.2-fix-Intel-compilation.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-fix compilation errors with Intel compilers:
-error: no operator "=" matches these operands
-author: Ward Poelmans
---- bowtie-1.2.2/hit.h 2018-01-24 12:57:47.135575442 +0100
-+++ bowtie-1.2.2/hit.h 2018-01-24 12:57:58.615869774 +0100
-@@ -640,10 +640,26 @@
- s.moveTo(btString);
- }
-
-+ batch(const batch &other)
-+ {
-+ batchId = other.batchId;
-+ isWritten = other.isWritten;
-+ btString = other.btString;
-+ }
-+
- bool operator<(const batch& other) const {
- return batchId < other.batchId;
- }
-
-+ batch& operator=(batch&& other) {
-+ if (&other != this) {
-+ batchId = other.batchId;
-+ isWritten = other.isWritten;
-+ other.btString.moveTo(btString);
-+ }
-+ return *this;
-+ }
-+
- batch& operator=(batch& other) {
- if (&other != this) {
- batchId = other.batchId;