| 79 | } |
| 80 | |
| 81 | std::shared_ptr<ObjectNative> DjinniPerfBenchmarkImpl::returnObject() { |
| 82 | static auto cachedReturnValue = std::make_shared<ObjectNativeImpl>(); |
| 83 | return cachedReturnValue; |
| 84 | } |
| 85 | |
| 86 | std::vector<int64_t> DjinniPerfBenchmarkImpl::returnListInt(int32_t size) { |
| 87 | static int32_t cachedReturnValueSize; |
nothing calls this directly
no outgoing calls
no test coverage detected