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