Skip to content

Commit

Permalink
CI fix
Browse files Browse the repository at this point in the history
  • Loading branch information
erincatto committed Dec 17, 2023
1 parent 08fa536 commit f1f2a7a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion include/box2d/api.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,9 @@ BOX2D_API void b2SetAllocator(b2AllocFcn* allocFcn, b2FreeFcn* freeFcn);
/// Total bytes allocated by Box2D
BOX2D_API uint32_t b2GetByteCount(void);

BOX2D_API b2AssertFcn* Box2DAssertCallback;
#ifdef __cplusplus
extern "C" b2AssertFcn* Box2DAssertCallback;
#else
extern b2AssertFcn* Box2DAssertCallback;
#endif

0 comments on commit f1f2a7a

Please sign in to comment.