We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 535efc1 commit c3868e5Copy full SHA for c3868e5
packages/react-native/ReactCommon/jsinspector-modern/HostTarget.h
@@ -44,12 +44,12 @@ class HostTarget;
44
class HostTargetTraceRecording;
45
46
struct HostTargetMetadata {
47
- std::optional<std::string> appDisplayName;
48
- std::optional<std::string> appIdentifier;
49
- std::optional<std::string> deviceName;
+ std::optional<std::string> appDisplayName{};
+ std::optional<std::string> appIdentifier{};
+ std::optional<std::string> deviceName{};
50
std::optional<std::string> integrationName;
51
- std::optional<std::string> platform;
52
- std::optional<std::string> reactNativeVersion;
+ std::optional<std::string> platform{};
+ std::optional<std::string> reactNativeVersion{};
53
};
54
55
/**
0 commit comments