From 8db5386053bb15f30aa7d13da382bc62dc88d4c9 Mon Sep 17 00:00:00 2001 From: Christopher Snowhill Date: Fri, 5 Aug 2022 21:35:50 -0700 Subject: [PATCH] [Cog Audio] Change a couple of imports These imports needed to be changed so that Swift bridging didn't import the system's semaphore.h instead of CogAudio's Semaphore.h, which is a completely different thing. Signed-off-by: Christopher Snowhill --- Audio/Chain/ChunkList.h | 2 +- Audio/Chain/Node.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Audio/Chain/ChunkList.h b/Audio/Chain/ChunkList.h index 489ae964c..105e8ff53 100644 --- a/Audio/Chain/ChunkList.h +++ b/Audio/Chain/ChunkList.h @@ -10,7 +10,7 @@ #import "AudioChunk.h" -#import "Semaphore.h" +#import NS_ASSUME_NONNULL_BEGIN diff --git a/Audio/Chain/Node.h b/Audio/Chain/Node.h index 8f9e3358e..f03d3c8fb 100644 --- a/Audio/Chain/Node.h +++ b/Audio/Chain/Node.h @@ -7,7 +7,7 @@ // #import "ChunkList.h" -#import "Semaphore.h" +#import #import #import