Fix V3Number::isMsbXZ(). (#3530)
This commit is contained in:
parent
96a4b3e5a5
commit
122e89ffde
|
|
@ -337,7 +337,7 @@ public:
|
||||||
bool isAnyX() const;
|
bool isAnyX() const;
|
||||||
bool isAnyXZ() const;
|
bool isAnyXZ() const;
|
||||||
bool isAnyZ() const;
|
bool isAnyZ() const;
|
||||||
bool isMsbXZ() const { return bitIsXZ(m_width); }
|
bool isMsbXZ() const { return bitIsXZ(m_width - 1); }
|
||||||
uint32_t toUInt() const;
|
uint32_t toUInt() const;
|
||||||
int32_t toSInt() const;
|
int32_t toSInt() const;
|
||||||
uint64_t toUQuad() const;
|
uint64_t toUQuad() const;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue