We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88e7655 commit f53d91dCopy full SHA for f53d91d
src/reformatPAF.cpp
@@ -25,7 +25,7 @@ std::string processLine(std::string line) {
25
26
std::string res;
27
res = v[5] + "\t" + v[6] + "\t" + v[7] + "\t" + v[8] + "\t" + v[4] + "\t" + v[0] + "\t" + v[1] + "\t" + v[2] + "\t" + v[3];
28
- for (int i = 9 ; i < v.size(); i++) {
+ for (unsigned i = 9 ; i < v.size(); i++) {
29
res += "\t" + v[i];
30
}
31
0 commit comments