Skip to content

Commit

Permalink
fix compiler warning due to signed/unsigned comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
sjneph committed Jun 19, 2017
1 parent 803697d commit 96b625b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion applications/bed/bedops/src/Bedops.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -869,7 +869,7 @@ void doUnionAllPQ(BedFiles& bedFiles) {
return;
}

for ( int i = 0; i < bedFiles.size(); ++i ) {
for ( std::size_t i = 0; i < bedFiles.size(); ++i ) {
if ( bedFiles[i]->HasNext() )
pq.push(std::make_pair(bedFiles[i]->ReadLine(), i));
} // for
Expand Down

0 comments on commit 96b625b

Please sign in to comment.