Skip to content

Commit 1c5aa20

Browse files
authored
Merge pull request #107 from jaebeom-kim/master
Added #include <cstdint> to fix error during bioconda update
2 parents bead6d7 + 8dcd897 commit 1c5aa20

26 files changed

+26
-2
lines changed

src/commons/Classifier.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
#include "KmerExtractor.h"
3131
#include "Taxonomer.h"
3232
#include "Reporter.h"
33+
#include <cstdint>
3334
#define BufferSize 16'777'216 //16 * 1024 * 1024 // 16 M
3435
using namespace std;
3536

src/commons/FileMerger.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#include "NcbiTaxonomy.h"
99
#include "printBinary.h"
1010
#include "common.h"
11-
11+
#include <cstdint>
1212

1313

1414
using namespace std;

src/commons/IndexCreator.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
#include "SubstitutionMatrix.h"
2121
#include "tantan.h"
2222
#include "LocalUtil.h"
23+
#include <cstdint>
2324

2425

2526
#ifdef OPENMP

src/commons/Kmer.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
#define ADKMER3_KMER_H
33
#include <iostream>
44
#include "NcbiTaxonomy.h"
5+
#include <cstdint>
56

67
struct QueryKmerInfo {
78
explicit QueryKmerInfo(uint32_t seqID = 0, uint32_t pos = 0, uint8_t frame = 0 ) : pos(pos), sequenceID(seqID), frame(frame) {}

src/commons/KmerBuffer.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
#include <iostream>
44
#include <Kmer.h>
55
#include "Util.h"
6+
#include <cstdint>
67

78

89
class QueryKmerBuffer{

src/commons/KmerExtractor.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
#include "common.h"
77
#include <unordered_map>
88
#include <atomic>
9+
#include <cstdint>
910

1011
class KmerExtractor {
1112
private:

src/commons/KmerMatcher.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
#include <string>
1313
#include <vector>
1414
#include <unistd.h>
15+
#include <cstdint>
1516

1617
#define BufferSize 16'777'216 // 16 * 1024 * 1024 // 16 M
1718

src/commons/LocalUtil.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
#include <string>
66
#include "common.h"
77
#include "KSeqWrapper.h"
8+
#include <cstdint>
89

910
class LocalUtil : public Util {
1011
public:

src/commons/Mmap.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
#include <cstdlib>
1010
#include <iostream>
1111
#include <time.h>
12+
#include <cstdint>
1213

1314
template <typename T>
1415
struct MmapedData

src/commons/ProdigalWrapper.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
#include <vector>
2121
#include "xxhash.h"
2222
#include "SeqIterator.h"
23+
#include <cstdint>
2324

2425
#define MIN_SINGLE_GENOME 20000
2526
#define IDEAL_SINGLE_GENOME 100000

0 commit comments

Comments
 (0)