Skip to content

Commit

Permalink
Move v0.4.2 tag to fix pedantic clang error
Browse files Browse the repository at this point in the history
  • Loading branch information
rob-p committed Jun 15, 2015
1 parent c66367a commit c49dccd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/CollapsedEMOptimizer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ bool CollapsedEMOptimizer::optimize(ExpT& readExp,

auto jointLog = sopt.jointLog;

double totalNumFrags{readExp.numMappedReads()};
double totalNumFrags{static_cast<double>(readExp.numMappedReads())};
double totalLen{0.0};

for (size_t i = 0; i < transcripts.size(); ++i) {
Expand Down

0 comments on commit c49dccd

Please sign in to comment.