Skip to content

Commit

Permalink
Add some casts to make android compiler happy
Browse files Browse the repository at this point in the history
  • Loading branch information
andy31415 committed Oct 21, 2024
1 parent bff7f03 commit a89f016
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/codegen-data-model-provider/EmberDataBuffer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ struct SignedDecodeInfo
{
return SignedDecodeInfo{
n,
-(1LL << (8 * n - 1)),
((1LL << (8 * n - 1)) - 1),
-static_cast<int64_t>(1LL << (8 * n - 1)),
(static_cast<int64_t>((1LL << (8 * n - 1))) - 1),
};
}
};
Expand Down

0 comments on commit a89f016

Please sign in to comment.