Changeset 3197 for trunk/test/bam_pair_iterator.cc
- Timestamp:
- Apr 29, 2014, 3:40:53 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/bam_pair_iterator.cc
r3196 r3197 27 27 #include "yat/omic/BamWriteIterator.h" 28 28 #endif 29 30 #include <boost/version.hpp>31 29 32 30 #include <algorithm> … … 76 74 for (; piter!=pend; ++piter) { 77 75 result.push_back(*piter); 76 result.back() = *piter; 78 77 // This code doesn't work with boost 1.48 (or older). See 79 78 // https://svn.boost.org/trac/boost/ticket/5697 for details. It's … … 81 80 // and if it wasn't modify this test accordingly and update the 82 81 // docs in 'yat/omic/BamPairIterator.h'. 83 #if BOOST_VERSION > 10480084 82 result.back().first() = piter->first(); 85 83 result.back().second() = piter->second(); 86 #endif87 84 } 88 85 // not really doing anything since we've already iterated through
Note: See TracChangeset
for help on using the changeset viewer.