[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 <kode54@gmail.com>
main
Christopher Snowhill 2022-08-05 21:35:50 -07:00
parent cbeba3fa0e
commit 8db5386053
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@
#import "AudioChunk.h"
#import "Semaphore.h"
#import <CogAudio/Semaphore.h>
NS_ASSUME_NONNULL_BEGIN

View File

@ -7,7 +7,7 @@
//
#import "ChunkList.h"
#import "Semaphore.h"
#import <CogAudio/Semaphore.h>
#import <Cocoa/Cocoa.h>
#import <os/workgroup.h>