diff options
author | Haneef Mubarak <haneef503@gmail.com> | 2020-05-26 16:08:33 -0700 |
---|---|---|
committer | Haneef Mubarak <haneef503@gmail.com> | 2020-05-26 16:08:33 -0700 |
commit | 6c92690914094ca6e784ff8d0cd8ee1cfc87d5ed (patch) | |
tree | 5cca1ce0af68d4f0c45a93452116c7076050a949 /include/mimalloc-internal.h | |
parent | 429025634e7a20983bc5c3b6b946f335b1c5090d (diff) |
fix REP MOVSB doc comment typo
Diffstat (limited to 'include/mimalloc-internal.h')
-rw-r--r-- | include/mimalloc-internal.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/mimalloc-internal.h b/include/mimalloc-internal.h index b191d03..43f72a1 100644 --- a/include/mimalloc-internal.h +++ b/include/mimalloc-internal.h @@ -175,8 +175,8 @@ bool _mi_page_is_valid(mi_page_t* page); #endif // ------------------------------------------------------ -// Fast `memcpy()` on x86(_64) platforms unavailable, -// use REP MOVSB +// Fast `memcpy()` on x86(_64) platforms unavailable +// on Windows, use REP MOVSB if necessary // ------------------------------------------------------ #if defined(_M_IX86) || defined(_M_X64) |