Remove redundant void argument list in function def

This commit is contained in:
Filip Gawin
2019-01-09 19:43:54 +01:00
parent 4169c6f37d
commit 6ddb2c36fc
19 changed files with 29 additions and 29 deletions
+2 -2
View File
@@ -73,7 +73,7 @@ void al_free(void *ptr) noexcept
#endif
}
size_t al_get_page_size(void) noexcept
size_t al_get_page_size() noexcept
{
static size_t psize = 0;
if(UNLIKELY(!psize))
@@ -98,7 +98,7 @@ size_t al_get_page_size(void) noexcept
return psize;
}
int al_is_sane_alignment_allocator(void) noexcept
int al_is_sane_alignment_allocator() noexcept
{
#if defined(HAVE_ALIGNED_ALLOC) || defined(HAVE_POSIX_MEMALIGN) || defined(HAVE__ALIGNED_MALLOC)
return 1;