mirror of
https://github.com/Microsoft/calculator.git
synced 2025-08-22 22:23:29 -07:00
Fix compilation issue
This commit is contained in:
parent
25a5c1b315
commit
3f6b1f58d6
1 changed files with 1 additions and 1 deletions
|
@ -444,7 +444,7 @@ void _divnum(PNUMBER* pa, PNUMBER b, uint32_t radix, int32_t precision)
|
||||||
|
|
||||||
if (c->mant != ++ptrc)
|
if (c->mant != ++ptrc)
|
||||||
{
|
{
|
||||||
memmove(c->mant, ptrc, static_cast<size_t>(cdigits) * sizeof(MANTTYPE)));
|
memmove(c->mant, ptrc, static_cast<size_t>(cdigits) * sizeof(MANTTYPE));
|
||||||
}
|
}
|
||||||
|
|
||||||
// Cleanup table structure
|
// Cleanup table structure
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue