Skip to content

Commit

Permalink
Some more code cleaning
Browse files Browse the repository at this point in the history
  • Loading branch information
pzaino committed Nov 23, 2023
1 parent 167a9d1 commit 2580f34
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/zvector.c
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ static void p_throw_error(const zvect_retval error_code,
ZVECT_ALWAYSINLINE
static inline
#endif // ZVECT_MEMX_METHOD
void *p_vect_memcpy(const void * __restrict dst, const void * __restrict src,
void *p_vect_memcpy(const void * dst, const void * src,
size_t size)
{
#if (ZVECT_MEMX_METHOD == 0)
Expand Down Expand Up @@ -411,8 +411,8 @@ void *p_vect_memcpy(const void * __restrict dst, const void * __restrict src,
}

ZVECT_ALWAYSINLINE
static inline void *p_vect_memmove(const void *__restrict dst,
const void *__restrict src, size_t size)
static inline void *p_vect_memmove(const void * dst,
const void * src, size_t size)
{
#ifdef DEBUG
log_msg(ZVLP_INFO, "p_vect_memmove: dst %*p\n", 14, dst);
Expand Down

0 comments on commit 2580f34

Please sign in to comment.