Changeset 62448 in vbox for trunk/src/VBox/Runtime/common/math
- Timestamp:
- Jul 22, 2016 2:51:49 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 109001
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/math/bignum.cpp
r59747 r62448 1101 1101 { 1102 1102 RTBIGNUM_ASSERT_VALID(pLeft); 1103 if (pLeft->fNegative == ( iRight < 0))1103 if (pLeft->fNegative == (unsigned)(iRight < 0)) /* (unsigned cast is for MSC weirdness) */ 1104 1104 { 1105 1105 AssertCompile(RTBIGNUM_ELEMENT_SIZE <= sizeof(iRight)); … … 1729 1729 { 1730 1730 int rc = rtBigNumSetUsed(pBigNum, cUsed + 1); 1731 AssertRCReturn(rc, rc); 1731 1732 pBigNum->pauElements[cUsed] = uCarry; 1732 1733 }
Note:
See TracChangeset
for help on using the changeset viewer.