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.
2 parents 1b91161 + 586904e commit 9b0e580Copy full SHA for 9b0e580
src/main.cpp
@@ -1609,7 +1609,7 @@ double min_value = numeric_limits<double>::min(); // current minimal weight repr
1609
file_nexus.open(nexus);
1610
// nexus format stuff
1611
stream_nexus << "#nexus\n\nBEGIN Taxa;\nDIMENSIONS ntax=" << denom_file_count << ";\nTAXLABELS" ;
1612
- for(int i; i < denom_file_count; ++i){
+ for(int i = 0; i < denom_file_count; ++i){
1613
string taxa = nexus_color::remove_extensions(denom_names[i]); // cutting off file extension
1614
stream_nexus << "\n[" << i+1 << "] '" << taxa << "'";
1615
}
0 commit comments