1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-11-23 21:17:42 +00:00

Resolve obstructive warning.

This commit is contained in:
Thomas Harte
2025-10-17 15:21:47 -04:00
parent 287ff99bbc
commit bd8287fda3

View File

@@ -19,8 +19,8 @@ static void OSSGuard(OSGuardable guardable) {
static BOOL IsDry(int x) { return x < 2; } static BOOL IsDry(int x) { return x < 2; }
static const int MaximumBacklog = 4; #define MaximumBacklog 4
static const int NumBuffers = MaximumBacklog + 1; #define NumBuffers MaximumBacklog + 1
@implementation CSAudioQueue { @implementation CSAudioQueue {
AudioQueueRef _audioQueue; AudioQueueRef _audioQueue;