1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-11-01 11:16:16 +00:00

Adopt brackets, as is now a macro.

This commit is contained in:
Thomas Harte
2025-10-17 21:38:12 -04:00
parent 406ef4e16c
commit 676b1f6fdc

View File

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