From 02b9bde26b9ab62032fb76e26810973e07270f41 Mon Sep 17 00:00:00 2001 From: Rone Charles Date: Fri, 9 Jun 2017 20:30:39 -0400 Subject: [PATCH] Add _done to initialization list --- blockwise_sa.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/blockwise_sa.h b/blockwise_sa.h index c3fedaa..2ca7b7c 100644 --- a/blockwise_sa.h +++ b/blockwise_sa.h @@ -194,7 +194,7 @@ class KarkkainenBlockwiseSA : public InorderBlockwiseSA { string base_fname = "", ostream& __logger = cout) : InorderBlockwiseSA(__text, __bucketSz, __sanityCheck, __passMemExc, __verbose, __logger), - _sampleSuffs(), _nthreads(__nthreads), _itrBucketIdx(0), _cur(0), _dcV(__dcV), _dc(NULL), _built(false), _base_fname(base_fname), _bigEndian(currentlyBigEndian()) + _sampleSuffs(), _nthreads(__nthreads), _itrBucketIdx(0), _cur(0), _dcV(__dcV), _dc(NULL), _built(false), _base_fname(base_fname), _bigEndian(currentlyBigEndian()), _done(NULL) #ifdef WITH_TBB ,thread_group_started(false) #endif @@ -461,7 +461,7 @@ class KarkkainenBlockwiseSA : public InorderBlockwiseSA { #endif std::vector > _tparams; String > _itrBuckets; /// buckets - volatile bool* _done = NULL; /// is a block processed? + volatile bool* _done; /// is a block processed? }; /**