Skip to content

Commit

Permalink
Xcode 16 compilation fix
Browse files Browse the repository at this point in the history
Xcode 16 compilation fix
  • Loading branch information
AleManniTW authored Jul 12, 2024
2 parents 629e47d + 1f49eac commit 099fc51
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 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,13 +39,12 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <exception>
#include <typeinfo>
#include <stdexcept>

#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))
Expand Down

0 comments on commit 099fc51

Please sign in to comment.