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