diff options
author | Jason W. Bacon <jwb@FreeBSD.org> | 2018-04-24 14:16:46 +0000 |
---|---|---|
committer | Jason W. Bacon <jwb@FreeBSD.org> | 2018-04-24 14:16:46 +0000 |
commit | 6c102b8c64d9fffde755102268f249c4d825bebc (patch) | |
tree | 72ae7460506a9b04d5602d9aa4e0824ee795dcc0 /biology/unanimity/files/patch-include_pacbio_genomicconsensus_Input.h | |
parent | 2e6ea034ad9b3f9e00cefdf215668f52396f929f (diff) | |
download | ports-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.h | 16 |
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; |