Skip to content

Commit eeaec60

Browse files
GenomicRegion: Fixed a big in the declaration of ReadBEDFile for SimpleGenomicRegion where the parameters are not consistent with those in the function definition; one is pass-by-val other by ref
1 parent fe50948 commit eeaec60

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

GenomicRegion.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ ReadBEDFile(const std::string &filename,
392392
std::vector<GenomicRegion> &regions);
393393

394394
void
395-
ReadBEDFile(const std::string filename,
395+
ReadBEDFile(const std::string &filename,
396396
std::vector<SimpleGenomicRegion> &regions);
397397

398398
template <class T> void

0 commit comments

Comments
 (0)