| 165 | // ### ObjectQuery::LogicalOperands ### |
| 166 | |
| 167 | ObjectQuery::LogicalOperands::LogicalOperands(const ObjectQuery::LogicalOperands& proto) |
| 168 | : first(proto.first ? std::make_unique<ObjectQuery>(*proto.first) : std::make_unique<ObjectQuery>()) |
| 169 | , second(proto.second ? std::make_unique<ObjectQuery>(*proto.second) : std::make_unique<ObjectQuery>()) |
| 170 | { |
| 171 | // nothing else |
| 172 | } |
| 173 | |
| 174 | |
| 175 | ObjectQuery::LogicalOperands::~LogicalOperands() = default; |
nothing calls this directly
no outgoing calls
no test coverage detected