* \brief called by CpuDispatcher after run method has completed * * Decrements the continuation task's reference count, if specified. */
| 312 | * Decrements the continuation task's reference count, if specified. |
| 313 | */ |
| 314 | PX_INLINE void release() |
| 315 | { |
| 316 | if( mCont ) |
| 317 | { |
| 318 | mCont->removeReference(); |
| 319 | } |
| 320 | } |
| 321 | |
| 322 | protected: |
| 323 |
nothing calls this directly
no test coverage detected