mirror of
https://github.com/PrimeDecomp/prime.git
synced 2026-07-12 18:18:56 -07:00
Match CFontRenderState, can't link due to ordering (#34)
This commit is contained in:
@@ -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 >
|
||||
|
||||
Reference in New Issue
Block a user