1 #ifndef PBBAM_UNUSED_H
2 #define PBBAM_UNUSED_H
3 
4 namespace PacBio {
5 namespace BAM {
6 
7 template <typename T>
UNUSED(const T &)8 void UNUSED(const T&)
9 {
10 }
11 
12 }  // namespace BAM
13 }  // namespace PacBio
14 
15 #endif  // PBBAM_UNUSED_H
16