- Timestamp:
- Sep 16, 2015, 1:40:55 AM (8 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/0.13-stable (added) merged: 3418,3420-3422
- Property svn:mergeinfo changed
-
trunk/README.developer
r3417 r3423 153 153 154 154 155 == Avoid compiler warnings from hts.h == 156 157 When compiling with GCC in C++98 mode with -pedantic (as is 158 recommended under development) the file 'htslib/hts.h' will cause 159 warnings if it's not installed as system header. You can avoid this 160 warning by replacing CPPFLAGS=-I/path/to/htslib with 161 CPPFLAGS="-isystem /path/to/htslib". 162 155 163 = Release Procedure = 156 164 -
trunk/test/scheduler3.cc
r3405 r3423 32 32 33 33 #include <boost/shared_ptr.hpp> 34 #include <boost/exception .hpp>34 #include <boost/exception/all.hpp> 35 35 36 36 #include <iostream> -
trunk/yat/omic/BamHeader.cc
r3417 r3423 30 30 // we need to include 'sam_header.h' when compiling against libbam 31 31 #ifndef YAT_HAVE_HTSLIB 32 #if YAT_HAVE_ SAM_H32 #if YAT_HAVE_BAM_H 33 33 #include <sam_header.h> 34 34 #elif YAT_HAVE_BAM_BAM_H -
trunk/yat/utility/Scheduler.cc
r3407 r3423 24 24 #include "Scheduler.h" 25 25 26 #include <boost/exception .hpp>26 #include <boost/exception/all.hpp> 27 27 28 28 #include <cassert>
Note: See TracChangeset
for help on using the changeset viewer.