| 116 | } |
| 117 | |
| 118 | template <typename T> inline void destruct_array(T* p, size_t n) |
| 119 | { |
| 120 | T* q = p + n; |
| 121 | for (; p != q; ++p) |
| 122 | p->~T(); |
| 123 | } |
| 124 | |
| 125 | template<typename T> struct int_traits { enum { cMin = INT32_MIN, cMax = INT32_MAX, cSigned = true }; }; |
| 126 |
no outgoing calls
no test coverage detected