| 201 | // instance data. |
| 202 | template <typename T> |
| 203 | auto |
| 204 | wrap_create_instance(T *context, bool execute, CaseTag<1>) -> decltype(_do_create_instance(context), bool()) |
| 205 | { |
| 206 | if (execute) { |
| 207 | _do_create_instance(context); |
| 208 | } |
| 209 | return true; |
| 210 | } |
| 211 | |
| 212 | template <typename T> |
| 213 | auto |
no outgoing calls
no test coverage detected