mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-12-09 05:47:40 +00:00
Runtime/math matches; better libc headers
This commit is contained in:
@@ -66,8 +66,8 @@ inline void uninitialized_copy_2(S* begin, D* out, S* end) {
|
||||
}
|
||||
|
||||
template < typename S, typename D >
|
||||
inline void uninitialized_copy_n(D* dest, S* src, size_t count) {
|
||||
for (size_t i = 0; i < count; ++dest, ++i, ++src) {
|
||||
inline void uninitialized_copy_n(D* dest, S* src, int count) {
|
||||
for (int i = 0; i < count; ++dest, ++i, ++src) {
|
||||
construct(dest, *src);
|
||||
}
|
||||
// destroy(src, src + count); ??
|
||||
|
||||
Reference in New Issue
Block a user