ultimatesource / denovogear

A program to detect denovo-variants using next-generation sequencing data.
http://www.nature.com/nmeth/journal/v10/n10/full/nmeth.2611.html
GNU General Public License v3.0
49 stars 25 forks source link

Fix moving io::File with GCC 4.8 and 4.9 #263

Closed reedacartwright closed 6 years ago

reedacartwright commented 6 years ago

To allow io::File to be moved with incomplete std libraries, change io::File to hold a unique_ptr to a stream buffer instead of a stream object.

reedacartwright commented 6 years ago

255