We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c4273e7 + 9b0e580 commit cf1395aCopy full SHA for cf1395a
src/main.cpp
@@ -1610,7 +1610,7 @@ double min_value = numeric_limits<double>::min(); // current minimal weight repr
1610
file_nexus.open(nexus);
1611
// nexus format stuff
1612
stream_nexus << "#nexus\n\nBEGIN Taxa;\nDIMENSIONS ntax=" << denom_file_count << ";\nTAXLABELS" ;
1613
- for(int i; i < denom_file_count; ++i){
+ for(int i = 0; i < denom_file_count; ++i){
1614
string taxa = nexus_color::remove_extensions(denom_names[i]); // cutting off file extension
1615
stream_nexus << "\n[" << i+1 << "] '" << taxa << "'";
1616
}
0 commit comments