1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
Index: b/tools/external/driver-tool/tool-args.hpp
===================================================================
--- a/tools/external/driver-tool/tool-args.hpp
+++ b/tools/external/driver-tool/tool-args.hpp
@@ -36,6 +36,7 @@
#include <string>
#include <iosfwd>
#include <cstring>
+#include <cstdint>
#include "util.hpp"
#define USE_TOOL_HELP 0
Index: b/tools/external/driver-tool/json-parse.hpp
===================================================================
--- a/tools/external/driver-tool/json-parse.hpp
+++ b/tools/external/driver-tool/json-parse.hpp
@@ -36,6 +36,8 @@
#include "debug.hpp"
#include "opt_string.hpp"
+#include <cstdint>
+
#if MS_Visual_C
#pragma warning(disable: 4061)
#endif
Index: b/tools/test-tools/sam-analyze/alig.hpp
===================================================================
--- a/tools/test-tools/sam-analyze/alig.hpp
+++ b/tools/test-tools/sam-analyze/alig.hpp
@@ -3,6 +3,7 @@
#include <string>
#include <algorithm>
+#include <cstdint>
#include "database.hpp"
struct sam_alig_t {
Index: b/tools/test-tools/sam-factory/sam-factory.cpp
===================================================================
--- a/tools/test-tools/sam-factory/sam-factory.cpp
+++ b/tools/test-tools/sam-factory/sam-factory.cpp
@@ -7,6 +7,7 @@
#include <sstream>
#include <memory>
#include <cstring>
+#include <cstdint>
const std::string empty_string( "" );
const std::string star_string( "*" );
Index: b/tools/test-tools/qa-stats/input.hpp
===================================================================
--- a/tools/test-tools/qa-stats/input.hpp
+++ b/tools/test-tools/qa-stats/input.hpp
@@ -34,6 +34,7 @@
#include <vector>
#include <memory>
#include <variant>
+#include <cstdint>
struct CIGAR {
struct OP {
|