Fix some (benign) shadowing warnings

This commit is contained in:
Chris Cannam
2022-09-20 09:30:48 +01:00
parent e90f377600
commit a5e2bfa444
5 changed files with 22 additions and 17 deletions

View File

@@ -108,9 +108,9 @@ void gettimeofday(struct timeval *p, void *tz);
#ifdef _WIN32
#define MLOCK(a,b) 1
#define MUNLOCK(a,b) 1
#define MUNLOCK_SAMPLEBLOCK(a) 1
#define MLOCK(a,b) (void)1
#define MUNLOCK(a,b) (void)1
#define MUNLOCK_SAMPLEBLOCK(a) (void)1
namespace RubberBand {
extern void system_memorybarrier();