| 1177 | array type being inferred. |
| 1178 | */ |
| 1179 | template<template<class> class Allocator, class T> inline void arrayRemove(Array<T>& array, std::size_t index, std::size_t count = 1) { |
| 1180 | arrayRemove<T, Allocator<T>>(array, index, count); |
| 1181 | } |
| 1182 | #endif |
| 1183 | |
| 1184 | /** |
nothing calls this directly
no test coverage detected