From: barnett Date: Thu, 16 Jul 2009 15:08:20 +0000 (+0000) Subject: Changed BAM_CORE_SIZE to unsigned int to remove signed comparison warning in BamReade... X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=ac62e75e098e999270f7f23e085504271a81de9d;p=bamtools.git Changed BAM_CORE_SIZE to unsigned int to remove signed comparison warning in BamReader.cpp:543 git-svn-id: svn+ssh://gene.bc.edu/home/subversion/Derek/BamTools/trunk@23 9efb377e-2e27-44b9-b91a-ec4abb80ed8b --- diff --git a/BamAux.h b/BamAux.h index 9c088dd..701f35a 100644 --- a/BamAux.h +++ b/BamAux.h @@ -70,7 +70,7 @@ namespace BamTools { const int DEFAULT_BLOCK_SIZE = 65536; // BAM constants - const int BAM_CORE_SIZE = 32; + const unsigned int BAM_CORE_SIZE = 32; const int BAM_CMATCH = 0; const int BAM_CINS = 1; const int BAM_CDEL = 2;