Skip to content

Commit

Permalink
• Applied workaround for static libs for swift/objc projects suggeste…
Browse files Browse the repository at this point in the history
  • Loading branch information
Angel Cortez committed Apr 22, 2020
1 parent f5ca037 commit 56a03fd
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion mambaSharedFramework/Rapid Parser/RapidParserError.m
Expand Up @@ -18,7 +18,11 @@
//

#include "RapidParserError.h"
#import <mamba/mamba-Swift.h>
#if __has_include("mamba-Swift.h")
#import "mamba-Swift.h"
#else
#import <mamba/mamba-Swift.h>
#endif

const uint32_t RapidParserErrorMissingTagData = PlaylistParserInternalErrorCodeMissingTagData;

Expand Down

0 comments on commit 56a03fd

Please sign in to comment.