| 186 | template <class RET> |
| 187 | template <class OTHER_RET> |
| 188 | NonBufferRetType<OTHER_RET> ICoroContext<RET>::getPrev() |
| 189 | { |
| 190 | std::shared_ptr<Impl> ctx = static_cast<Impl*>(this)->shared_from_this(); |
| 191 | return ctx->template getPrev<OTHER_RET>(ctx); |
| 192 | } |
| 193 | |
| 194 | template <class RET> |
| 195 | template <class OTHER_RET> |
nothing calls this directly
no test coverage detected