| 327 | |
| 328 | struct UnboundQueryContext : ReferenceCounted<UnboundQueryContext>, FastAllocated<UnboundQueryContext> { |
| 329 | UnboundQueryContext() = default; |
| 330 | explicit UnboundQueryContext(DataKey prefix) : prefix(prefix) {} |
| 331 | UnboundQueryContext(UnboundQueryContext const& other, StringRef sub) : prefix(other.prefix) { prefix.append(sub); } |
| 332 |