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