| 52 | |
| 53 | template <typename Stream> |
| 54 | void PackString(clmdep_msgpack::packer<Stream>& Packer, const FString& S) |
| 55 | { |
| 56 | FTCHARToUTF8 Conv(*S); |
| 57 | Packer.pack_str(Conv.Length()); |
| 58 | Packer.pack_str_body(Conv.Get(), Conv.Length()); |
| 59 | } |
| 60 | |
| 61 | template <typename Stream> |
| 62 | void PackJsonValue(clmdep_msgpack::packer<Stream>& Packer, const TSharedPtr<FJsonValue>& V); |
no outgoing calls
no test coverage detected