Browse code

fix a minor compile error

git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/seqbias@57328 bc3139a8-67e5-0310-9ffc-ced21a209358

Daniel Jones authored on 09/08/2011 17:27:42
Showing 2 changed files

... ...
@@ -36,7 +36,6 @@ kmer_matrix::kmer_matrix(const YAML::Node& node)
36 36
     A = new double[size1 * size2];
37 37
 
38 38
     const YAML::Node& node_A = node["A"];
39
-    fprintf(stderr, "%zu\n", node_A.size());
40 39
 
41 40
     size_t i;
42 41
     for (i = 0; i < size1 * size2; ++i) {
... ...
@@ -10,6 +10,7 @@
10 10
 #include "miscmath.h"
11 11
 #include <cmath>
12 12
 #include <cstdio>
13
+#include <cstring>
13 14
 
14 15
 using namespace std;
15 16