mirror of
https://github.com/Microsoft/calculator.git
synced 2025-08-22 22:23:29 -07:00
Use auto
It works better here
This commit is contained in:
parent
e5172e9839
commit
db6348aec3
1 changed files with 1 additions and 1 deletions
|
@ -601,7 +601,7 @@ bool zernum(_In_ PNUMBER a)
|
|||
|
||||
// loop over all the digits until you find a nonzero or until you run
|
||||
// out of digits
|
||||
for (int32_t length = a->cdigit; length > 0; --length)
|
||||
for (auto length = a->cdigit; length > 0; --length)
|
||||
{
|
||||
if (*pcha)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue