Merge pull request #11676 from schellingb/fix-unused-func-warning

Mark function possibly unused to suppress warning
This commit is contained in:
Autechre 2020-12-10 03:42:41 +01:00 committed by GitHub
commit e31605b9fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -85,6 +85,12 @@ struct rbuf__hdr
size_t cap;
};
#ifdef __GNUC__
__attribute__((__unused__))
#elif defined(_MSC_VER)
#pragma warning(push)
#pragma warning(disable:4505) //unreferenced local function has been removed
#endif
static void *rbuf__grow(void *buf,
size_t new_len, size_t elem_size)
{
@ -107,5 +113,8 @@ static void *rbuf__grow(void *buf,
new_hdr->cap = new_cap;
return new_hdr + 1;
}
#if defined(_MSC_VER)
#pragma warning(pop)
#endif
#endif