Fix V3Number::isMsbXZ(). (#3530)

This commit is contained in:
Mariusz Glebocki 2022-08-05 20:12:52 +02:00 committed by GitHub
parent 96a4b3e5a5
commit 122e89ffde
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -337,7 +337,7 @@ public:
bool isAnyX() const;
bool isAnyXZ() const;
bool isAnyZ() const;
bool isMsbXZ() const { return bitIsXZ(m_width); }
bool isMsbXZ() const { return bitIsXZ(m_width - 1); }
uint32_t toUInt() const;
int32_t toSInt() const;
uint64_t toUQuad() const;