| 41 | } |
| 42 | |
| 43 | template <typename T> static void |
| 44 | deleteBuffers(T *A, T *x, T *y, T *backA) |
| 45 | { |
| 46 | |
| 47 | if(A != NULL) |
| 48 | { |
| 49 | delete[] A; |
| 50 | } |
| 51 | if(backA != NULL) |
| 52 | { |
| 53 | delete[] backA; |
| 54 | } |
| 55 | if(x != NULL) |
| 56 | { |
| 57 | delete[] x; |
| 58 | } |
| 59 | if(y != NULL) |
| 60 | { |
| 61 | delete[] y; |
| 62 | } |
| 63 | } |
| 64 | |
| 65 | template <typename T> |
| 66 | void |
nothing calls this directly
no outgoing calls
no test coverage detected