CMemoryCardDriver progress

Former-commit-id: 32a5ad5b71
This commit is contained in:
2022-10-11 00:00:52 -04:00
parent 24cc7fda7d
commit 3fca1f9c89
7 changed files with 175 additions and 37 deletions

View File

@@ -41,7 +41,7 @@ inline void uninitialized_copy_n(S src, int n, D dest) {
template < typename D, typename S >
inline void uninitialized_fill_n(D dest, int n, const S& value) {
D cur = dest;
for (size_t i = 0; i < n; ++i, ++cur) {
for (int i = 0; i < n; ++i, ++cur) {
construct(&*cur, value);
}
}