Fix struct not initialized warning

#jira UE-201223

[CL 29940289 by dominik peacock in ue5-main branch]
This commit is contained in:
dominik peacock
2023-11-27 13:56:44 -05:00
parent 28020d425a
commit 8e3ad93d75
@@ -8,6 +8,7 @@
// IMPORTANT: This peer-to-peer workflow is subject to be replaced, possibly in 5.5, by a server feature.
// The peer-to-peer approach cannot guarantee atomicity if client A is trying to edit clients B and C as one operation: How to revert when B succeeds and C fails? You can't.
// TODO UE-201136.
/** A kind request from one client to another client to change their server registered state. The receiver can reject the request. */
USTRUCT()
@@ -107,5 +108,5 @@ struct FMultiUser_ChangeRemote_Cancelled
GENERATED_BODY()
UPROPERTY()
EMultiUserCancelRemoteChangeReason Reason;
EMultiUserCancelRemoteChangeReason Reason = EMultiUserCancelRemoteChangeReason::FailedToCreate;
};