Lines Matching refs:_minor
21 Version() : _major(0), _minor(0) {}
24 Version(unsigned mj, unsigned mn) : _major(mj), _minor(mn) {}
28 ( _major == other._major && _minor > other._minor );
32 return _major == other._major && _minor == other._minor;
36 return _major != other._major || _minor != other._minor;
41 ( _major == other._major && _minor < other._minor );
45 unsigned int _minor;