| 29 | template <typename T> |
| 30 | struct functor_builtin_delete { |
| 31 | void operator()(T *ptr) { delete ptr; } |
| 32 | #if (defined(__GNUC__) && __GNUC__ == 4 && __GNUC_MINOR__ == 8) \ |
| 33 | || (defined(__clang_major__) && __clang_major__ == 3 && __clang_minor__ == 6) |
| 34 | // Workaround for these errors: |
nothing calls this directly
no outgoing calls
no test coverage detected