Skip to content

Commit

Permalink
Fixed ofstream call that didn't compile on Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffreybarrick committed Jul 6, 2015
1 parent 4da19ca commit de7b98d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/c/breseq/mutation_predictor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2807,7 +2807,7 @@ namespace breseq {

// Write the detailed output file
if (detailed_output) {
ofstream detailed_output_file(detailed_output_file_name);
ofstream detailed_output_file(detailed_output_file_name.c_str());

detailed_output_file << "BASE SUBSTITUTIONS:" << base_substitution_lines.size() << "\n";
detailed_output_file << join(base_substitution_lines, "\n") << "\n\n";
Expand Down

0 comments on commit de7b98d

Please sign in to comment.