mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-12-12 15:26:08 +00:00
More main progress; tons of headers & stuff
Former-commit-id: a6e365791b
This commit is contained in:
@@ -66,6 +66,7 @@ inline void uninitialized_copy_2(S* begin, D* out, S* end) {
|
||||
}
|
||||
|
||||
template < typename S, typename D >
|
||||
// inline void uninitialized_copy_n(S* src, int count, D* dest) {
|
||||
inline void uninitialized_copy_n(D* dest, S* src, int count) {
|
||||
for (int i = 0; i < count; ++dest, ++i, ++src) {
|
||||
construct(dest, *src);
|
||||
|
||||
Reference in New Issue
Block a user