mirror of
https://github.com/Microsoft/calculator.git
synced 2025-07-16 02:02:51 -07:00
Fix 32-bit build (#588)
This commit is contained in:
parent
a6384269bc
commit
01cfe6dd89
1 changed files with 1 additions and 1 deletions
|
@ -314,7 +314,7 @@ namespace CalculatorApp
|
|||
}
|
||||
|
||||
Platform::String ^ buttonUsageString;
|
||||
for (int i = 0; i < buttonLog.size(); i++)
|
||||
for (size_t i = 0; i < buttonLog.size(); i++)
|
||||
{
|
||||
buttonUsageString += NavCategory::GetFriendlyName(buttonLog[i].mode);
|
||||
buttonUsageString += "|";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue