| 85 | std::is_trivially_constructible<T>::value |
| 86 | , int>::type = 0> |
| 87 | inline void arrayConstruct(ValueInitT, T* const begin, T* const end) { |
| 88 | if (begin < end) std::memset(begin, 0, (end - begin) * sizeof(T)); |
| 89 | } |
| 90 | |
| 91 | template<class T, typename std::enable_if<! |
| 92 | /* Unlike with Array, where is_trivial is used instead of |
no outgoing calls
no test coverage detected