Fix warning when compiling for win32 ia32 build
This commit is contained in:
parent
8471f647a1
commit
cdfcca147a
1 changed files with 1 additions and 1 deletions
|
@ -249,7 +249,7 @@ JumpListResult JumpList::AppendCategory(const JumpListCategory& category) {
|
||||||
if (appended_count == 0)
|
if (appended_count == 0)
|
||||||
return result;
|
return result;
|
||||||
|
|
||||||
if ((appended_count < category.items.size()) &&
|
if ((static_cast<size_t>(appended_count) < category.items.size()) &&
|
||||||
(result == JumpListResult::SUCCESS)) {
|
(result == JumpListResult::SUCCESS)) {
|
||||||
result = JumpListResult::GENERIC_ERROR;
|
result = JumpListResult::GENERIC_ERROR;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue