| 1207 | array type being inferred. |
| 1208 | */ |
| 1209 | template<template<class> class Allocator, class T> inline void arrayRemoveUnordered(Array<T>& array, std::size_t index, std::size_t count = 1) { |
| 1210 | arrayRemoveUnordered<T, Allocator<T>>(array, index, count); |
| 1211 | } |
| 1212 | #endif |
| 1213 | |
| 1214 | /** |
nothing calls this directly
no test coverage detected