diff options
| author | AYMEN <53928879+AYMENJD@users.noreply.github.com> | 2024-12-05 15:41:30 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-12-05 15:41:30 +0300 |
| commit | d5445065e639fa673b86933062650d671eb419a2 (patch) | |
| tree | d7e3ad2e37115094f738b9d6418d72f3416848af /memprof | |
| parent | d0f077f3c0dfdadf36ef4c273368ae18bb9e8ed2 (diff) | |
Minor improvements. (#3169)
Diffstat (limited to 'memprof')
| -rw-r--r-- | memprof/memprof.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/memprof/memprof.cpp b/memprof/memprof.cpp index e6564e66a..c14914bc6 100644 --- a/memprof/memprof.cpp +++ b/memprof/memprof.cpp @@ -285,7 +285,7 @@ void *realloc(void *ptr, std::size_t size) { return new_ptr; } -void *memalign(std::size_t aligment, std::size_t size) { +void *memalign(std::size_t alignment, std::size_t size) { my_assert(false && "Memalign is unsupported"); return nullptr; } |
