* @brief Unref the timer so that the event-loop can exit */
| 128 | * @brief Unref the timer so that the event-loop can exit |
| 129 | */ |
| 130 | inline void removeRef() { |
| 131 | if (_refed) { |
| 132 | _refed = false; |
| 133 | PyEventLoop::_locker->decCounter(); |
| 134 | } |
| 135 | } |
| 136 | |
| 137 | /** |
| 138 | * @brief Set the debug info object for WTFPythonMonkey tool |
no test coverage detected