| 7356 | // If this is a constructor benchmark, destruct the underlying object |
| 7357 | template <typename U> |
| 7358 | void destruct_on_exit(typename std::enable_if<Destruct, U>::type* = 0) { destruct<true>(); } |
| 7359 | // Otherwise, don't |
| 7360 | template <typename U> |
| 7361 | void destruct_on_exit(typename std::enable_if<!Destruct, U>::type* = 0) { } |
nothing calls this directly
no outgoing calls
no test coverage detected