| 127 | } |
| 128 | |
| 129 | __forceinline ~StackArray () { |
| 130 | if (data != &arr[0]) alignedFree(data); |
| 131 | } |
| 132 | |
| 133 | __forceinline operator Ty* () { return data; } |
| 134 | __forceinline operator const Ty* () const { return data; } |
nothing calls this directly
no test coverage detected