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