| 185 | return obj; |
| 186 | } |
| 187 | const T *get() const |
| 188 | { |
| 189 | if (!obj) |
| 190 | resolve(); |
| 191 | return obj.get(); |
| 192 | } |
| 193 | bool operator<(const StateRef<T> &other) const { return this->id < other.id; } |
| 194 | void clear() |
| 195 | { |
no outgoing calls
no test coverage detected