File tree 1 file changed +2
-0
lines changed
1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -165,11 +165,13 @@ class AnyServiceCallback
165
165
if (std::holds_alternative<SharedPtrDeferResponseCallback>(callback_)) {
166
166
const auto & cb = std::get<SharedPtrDeferResponseCallback>(callback_);
167
167
cb (request_header, std::move (request));
168
+ TRACETOOLS_TRACEPOINT (callback_end, static_cast <const void *>(this ));
168
169
return nullptr ;
169
170
}
170
171
if (std::holds_alternative<SharedPtrDeferResponseCallbackWithServiceHandle>(callback_)) {
171
172
const auto & cb = std::get<SharedPtrDeferResponseCallbackWithServiceHandle>(callback_);
172
173
cb (service_handle, request_header, std::move (request));
174
+ TRACETOOLS_TRACEPOINT (callback_end, static_cast <const void *>(this ));
173
175
return nullptr ;
174
176
}
175
177
// auto response = allocate_shared<typename ServiceT::Response, Allocator>();
You can’t perform that action at this time.
0 commit comments