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? }; /**