File: include_vector.patch

package info (click to toggle)
ska 1.0%2Bdfsg-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 572 kB
  • sloc: cpp: 5,556; makefile: 92; sh: 19
file content (14 lines) | stat: -rw-r--r-- 407 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Author: Andreas Tille <tille@debian.org>
Last-update: Tue, 20 Sep 2022 10:14:48 +0200
Description: Add missing include since otherwise creating test suite would be broken

--- a/src/kmers.hpp
+++ b/src/kmers.hpp
@@ -5,6 +5,7 @@
 #include <unordered_map> //std::unordered_map
 #include <string> //std::string
 #include <array> //std::array
+#include <vector>
 
 void ascii_bitstring(std::string & mybits);