| 243 | } |
| 244 | |
| 245 | inline int64_t GetStartRealTime(const RpczSpan& span) { |
| 246 | return span.type() == SPAN_TYPE_SERVER ? |
| 247 | span.received_real_us() : span.start_send_real_us(); |
| 248 | } |
| 249 | |
| 250 | struct CompareByStartRealTime { |
| 251 | bool operator()(const RpczSpan& s1, const RpczSpan& s2) const { |
no test coverage detected