diff --git a/mrfCommon/src/mrfCommon.cpp b/mrfCommon/src/mrfCommon.cpp index b57c5d30..8f34c775 100644 --- a/mrfCommon/src/mrfCommon.cpp +++ b/mrfCommon/src/mrfCommon.cpp @@ -35,8 +35,7 @@ std::ostream& operator<<(std::ostream& strm, const MRFVersion& ver) strm<>8; } inline unsigned revision() const { return m_major&0xff; } - inline int subrelease() const { return m_minor; } + inline unsigned subrelease() const { return m_minor; } int compare(const MRFVersion& o) const; inline bool operator>(const MRFVersion& o) const { return compare(o)==1; }