| 87 | } |
| 88 | |
| 89 | void RemoteDebuggerClient::SendResourceClearedHint(ResourcePoolType PoolType) |
| 90 | { |
| 91 | shared_ptr<Value> tMessage = make_shared<Value>(ValueType::Dictionary); |
| 92 | tMessage->VDict["pool"] = make_shared<Value>(static_cast<int>(PoolType)); |
| 93 | |
| 94 | sendUdpMessage(UdpMessageType::ResourceCleared, tMessage); |
| 95 | } |
| 96 | |
| 97 | #endif |
nothing calls this directly
no outgoing calls
no test coverage detected