| 562 | array type being inferred. |
| 563 | */ |
| 564 | template<template<class> class Allocator, class T> inline void arrayResize(Array<T>& array, ValueInitT, std::size_t size) { |
| 565 | arrayResize<T, Allocator<T>>(array, ValueInit, size); |
| 566 | } |
| 567 | #endif |
| 568 | |
| 569 | /** |
no test coverage detected