aboutsummaryrefslogtreecommitdiff
path: root/biology/unanimity/files/patch-include_pacbio_genomicconsensus_Input.h
diff options
context:
space:
mode:
authorJason W. Bacon <jwb@FreeBSD.org>2018-04-24 14:16:46 +0000
committerJason W. Bacon <jwb@FreeBSD.org>2018-04-24 14:16:46 +0000
commit6c102b8c64d9fffde755102268f249c4d825bebc (patch)
tree72ae7460506a9b04d5602d9aa4e0824ee795dcc0 /biology/unanimity/files/patch-include_pacbio_genomicconsensus_Input.h
parent2e6ea034ad9b3f9e00cefdf215668f52396f929f (diff)
downloadports-6c102b8c64d9fffde755102268f249c4d825bebc.tar.gz
ports-6c102b8c64d9fffde755102268f249c4d825bebc.zip
Notes
Diffstat (limited to 'biology/unanimity/files/patch-include_pacbio_genomicconsensus_Input.h')
-rw-r--r--biology/unanimity/files/patch-include_pacbio_genomicconsensus_Input.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/biology/unanimity/files/patch-include_pacbio_genomicconsensus_Input.h b/biology/unanimity/files/patch-include_pacbio_genomicconsensus_Input.h
new file mode 100644
index 000000000000..89e43e082aff
--- /dev/null
+++ b/biology/unanimity/files/patch-include_pacbio_genomicconsensus_Input.h
@@ -0,0 +1,16 @@
+--- include/pacbio/genomicconsensus/Input.h.orig 2018-03-07 23:10:34 UTC
++++ include/pacbio/genomicconsensus/Input.h
+@@ -25,7 +25,12 @@ namespace GenomicConsensus {
+ class Input
+ {
+ public:
+- explicit Input(const Settings& settings) : settings_{settings} {}
++ // Original
++ //explicit Input(const Settings& settings) : settings_{settings} {}
++ // Probably OK
++ //explicit Input(const Settings& settings) { settings_ = settings; }
++ // https://forums.freebsd.org/threads/compile-error-with-clang-3-4.65595/#post-385293
++ explicit Input(const Settings& settings) : settings_(settings) {}
+
+ Input() = delete;
+ Input(const Input&) = delete;