File: fix_missing_includes.patch

package info (click to toggle)
seqtools 4.44.1%2Bdfsg-8
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 28,496 kB
  • sloc: cpp: 53,636; sh: 12,232; makefile: 386
file content (26 lines) | stat: -rw-r--r-- 550 bytes parent folder | download | duplicates (5)
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
Author: Andreas Tille <tille@debian.org>
Last-Update: Thu, 19 Oct 2017 16:27:56 +0200
Description: Fix include statement

--- a/gbtools/src/gbtoolsTrackhub/gbtoolsTrackhub.cpp
+++ b/gbtools/src/gbtoolsTrackhub/gbtoolsTrackhub.cpp
@@ -29,7 +29,8 @@
  */
 
 #include <iostream>
-#include <string>
+#include <cstring>
+#include <sstream>
 
 #include <curl/curl.h>
 
--- a/blixemApp/blxwindow.cpp
+++ b/blixemApp/blxwindow.cpp
@@ -52,6 +52,7 @@
 #include <string.h>
 #include <ctype.h>
 #include <algorithm>
+#include <sstream>
 
 using namespace std;