mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
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:
committed by
Facebook GitHub Bot
parent
6155ad0438
commit
b67dc01d1d
+1
-1
@@ -34,7 +34,7 @@ class ReadableMapBuffer : public jni::HybridClass<ReadableMapBuffer> {
|
||||
private:
|
||||
uint8_t *serializedData_ = nullptr;
|
||||
|
||||
int serializedDataSize_ = 0;
|
||||
int32_t serializedDataSize_ = 0;
|
||||
|
||||
friend HybridBase;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user