RN: use consistent class/struct
Reviewed By: lexs Differential Revision: D3858508 fbshipit-source-id: 6f49b09844cb70fae8078d650af69b200779c2f1
This commit is contained in:
parent
857bae4ea3
commit
272d3ded4f
|
@ -26,7 +26,7 @@ class NativeMap : public jni::HybridClass<NativeMap> {
|
|||
folly::dynamic map_;
|
||||
|
||||
friend HybridBase;
|
||||
friend class ReadableNativeMapKeySetIterator;
|
||||
friend struct ReadableNativeMapKeySetIterator;
|
||||
};
|
||||
|
||||
} // namespace react
|
||||
|
|
|
@ -36,7 +36,7 @@ struct ReadableNativeMap : jni::HybridClass<ReadableNativeMap, NativeMap> {
|
|||
|
||||
using HybridBase::HybridBase;
|
||||
friend HybridBase;
|
||||
friend class WritableNativeMap;
|
||||
friend struct WritableNativeMap;
|
||||
};
|
||||
|
||||
struct ReadableNativeMapKeySetIterator : jni::HybridClass<ReadableNativeMapKeySetIterator> {
|
||||
|
|
Loading…
Reference in New Issue