File: include_cstdint_for_gcc15.patch

package info (click to toggle)
sra-sdk 3.2.1%2Bdfsg-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 296,128 kB
  • sloc: ansic: 532,876; cpp: 243,000; perl: 9,649; python: 8,978; sh: 7,888; java: 6,253; makefile: 1,148; yacc: 703; xml: 310; lex: 236
file content (61 lines) | stat: -rw-r--r-- 1,776 bytes parent folder | download | duplicates (2)
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 {