Skip to content

Commit

Permalink
Fix a compilation issue present in Xcode 16 beta (#349)
Browse files Browse the repository at this point in the history
  • Loading branch information
matux authored Jul 11, 2024
1 parent 2dce684 commit cd04a2b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Release Notes

### 3.3.1

- Fixes a compilation issue present in Xcode 16 beta.

### 3.3.0

- Added Privacy Manifest to fulfill the new SDK privacy requirements from Apple.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,18 +39,16 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <exception>
#include <typeinfo>


#define STACKTRACE_BUFFER_LENGTH 30
#define DESCRIPTION_BUFFER_LENGTH 1000


// Compiler hints for "if" statements
#define likely_if(x) if(__builtin_expect(x,1))
#define unlikely_if(x) if(__builtin_expect(x,0))


// ============================================================================
#pragma mark - Globals -
// ============================================================================
Expand Down

0 comments on commit cd04a2b

Please sign in to comment.