Skip to content

Commit

Permalink
Merge pull request #44 from dpryan79/master
Browse files Browse the repository at this point in the history
Updates for TBB oneapi and C++11
  • Loading branch information
iminkin authored Sep 29, 2022
2 parents d1f9009 + 3ba9a11 commit 602b82c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SibeliaZ-LCB/common/streamfastaparser.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
#include <fstream>
#include <stdexcept>
#include <algorithm>
#include <tbb/mutex.h>
#include <iostream>
#include <memory>
#include <mutex>

#include "dnachar.h"

Expand Down Expand Up @@ -131,7 +131,7 @@ namespace TwoPaCo
size_t seqId_;
size_t start_;
size_t pieceId_;
tbb::mutex mutex_;
std::mutex mutex_;
size_t overlapSize_;
std::ifstream in_;
std::string overlapBuffer_;
Expand Down
1 change: 1 addition & 0 deletions SibeliaZ-LCB/distancekeeper.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
#define _DISTANCE_KEEPER_H_

#include "junctionstorage.h"
#include <climits>

namespace Sibelia
{
Expand Down

0 comments on commit 602b82c

Please sign in to comment.