Replace int -> int32_t

Summary:
This diff replaces all usages of int by int32_t. This is to ensure we always use a fixed size for int that matches what's expected on Java.

changelog: [internal] internal

Reviewed By: sammy-SC

Differential Revision: D27915608

fbshipit-source-id: 634c45796dda1d4434c3ad6ff3e199931c22940b
This commit is contained in:
David Vacca
2021-04-22 09:50:23 -07:00
committed by Facebook GitHub Bot
parent 6155ad0438
commit b67dc01d1d
6 changed files with 62 additions and 60 deletions
@@ -34,7 +34,7 @@ class ReadableMapBuffer : public jni::HybridClass<ReadableMapBuffer> {
private:
uint8_t *serializedData_ = nullptr;
int serializedDataSize_ = 0;
int32_t serializedDataSize_ = 0;
friend HybridBase;