Permalink
Browse files

Add _done to initialization list

  • Loading branch information...
1 parent c93223a commit 02b9bde26b9ab62032fb76e26810973e07270f41 @ch4rr0 ch4rr0 committed Jun 10, 2017
Showing with 2 additions and 2 deletions.
  1. +2 −2 blockwise_sa.h
View
@@ -194,7 +194,7 @@ class KarkkainenBlockwiseSA : public InorderBlockwiseSA<TStr> {
string base_fname = "",
ostream& __logger = cout) :
InorderBlockwiseSA<TStr>(__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<TStr> {
#endif
std::vector<pair<KarkkainenBlockwiseSA*, int> > _tparams;
String<String<TIndexOffU> > _itrBuckets; /// buckets
- volatile bool* _done = NULL; /// is a block processed?
+ volatile bool* _done; /// is a block processed?
};
/**

0 comments on commit 02b9bde

Please sign in to comment.