In UE 5.7
when use Stomp
there is an error “Enclosing block should never be called” (FLazyName::Resolve(), not specify LiteralType)
the reason is in Engine\Source\Runtime\Online\Stomp\Private\StompCommand.cpp()
const FLazyName HeartbeatCommand = FLazyName();
may be change to
const FLazyName HeartbeatCommand = FLazyName(““);
please fix it