Skip to content

Commit

Permalink
stddef again
Browse files Browse the repository at this point in the history
  • Loading branch information
erincatto committed Jul 28, 2024
1 parent e4544e8 commit 6722e63
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion samples/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,6 @@ int main(int, char**)

s_settings.Load();
s_settings.workerCount = b2MinInt(8, (int)enki::GetNumHardwareThreads() / 2);
s_settings.workerCount = 1;
SortTests();

glfwSetErrorCallback(glfwErrorCallback);
Expand Down
2 changes: 1 addition & 1 deletion samples/settings.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ struct Settings
bool drawProfile = false;
bool enableWarmStarting = true;
bool enableContinuous = true;
bool enableSleep = false;
bool enableSleep = true;
bool pause = false;
bool singleStep = false;
bool restart = false;
Expand Down
1 change: 1 addition & 0 deletions src/manifold.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
#include "box2d/math_functions.h"

#include <float.h>
#include <stddef.h>

#define B2_MAKE_ID(A, B) ((uint8_t)(A) << 8 | (uint8_t)(B))

Expand Down

0 comments on commit 6722e63

Please sign in to comment.