| 155 | } |
| 156 | |
| 157 | Value::~Value() { |
| 158 | if (m_watching) { |
| 159 | debug::notify_event("dtor"); |
| 160 | } |
| 161 | } |
| 162 | |
| 163 | void Value::register_value(ValueRef value) { |
| 164 | registered_values[value.id()] = ValueWeakRef(value); |
nothing calls this directly
no test coverage detected