Skip to content

Commit

Permalink
[Cog Audio] Change a couple of imports
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
kode54 committed Aug 6, 2022
1 parent e5aa428 commit 7e267f0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Audio/Chain/ChunkList.h
Expand Up @@ -10,7 +10,7 @@

#import "AudioChunk.h"

#import "Semaphore.h"
#import <CogAudio/Semaphore.h>

NS_ASSUME_NONNULL_BEGIN

Expand Down
2 changes: 1 addition & 1 deletion Audio/Chain/Node.h
Expand Up @@ -7,7 +7,7 @@
//

#import "ChunkList.h"
#import "Semaphore.h"
#import <CogAudio/Semaphore.h>
#import <Cocoa/Cocoa.h>

#import <os/workgroup.h>
Expand Down

0 comments on commit 7e267f0

Please sign in to comment.