Match CFontRenderState, can't link due to ordering (#34)

This commit is contained in:
Phillip Stephens
2026-01-24 12:40:49 -08:00
committed by GitHub
parent 7fa07e53f2
commit ff5c0b73a6
6 changed files with 100 additions and 11 deletions
+4 -3
View File
@@ -26,12 +26,13 @@ inline void destroy(It begin, It end) {
template < typename It, typename T >
inline T* uninitialized_copy(It begin, It end, T* out) {
T* tmp = out;
It cur = begin;
for (; cur != end; ++out, ++cur) {
construct(out, *cur);
for (; cur != end; ++tmp, ++cur) {
construct(tmp, *cur);
}
return out;
return tmp;
}
template < typename S, typename D >