| 239 | // global txn-start hook caller |
| 240 | template <typename T> |
| 241 | auto |
| 242 | wrap_glb_txn_start(T *context, bool execute, CaseTag<1>) -> decltype(_glb_txn_start(context), bool()) |
| 243 | { |
| 244 | if (execute) { |
| 245 | _glb_txn_start(context); |
| 246 | } |
| 247 | return true; |
| 248 | } |
| 249 | |
| 250 | template <typename T> |
| 251 | auto |
no outgoing calls
no test coverage detected