diff --git a/ChangeLog.md b/ChangeLog.md index a27a05c89d3b..517817a41a36 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -20,6 +20,9 @@ See docs/process.md for more on how version tagging works. 3.1.69 (in development) ----------------------- +- The usage of `EM_BOOL` in the emscripten API has been replaced with C/C++ + bool. This change should not be observable since `EM_BOOL` has been + equivalent to `bool` since #22157. (#22155) 3.1.68 - 09/30/24 ----------------- @@ -50,9 +53,6 @@ See docs/process.md for more on how version tagging works. added to `console.h`. The former simply maps directly to `console.trace`. The latter uses `dbg()` so it writes directly to stderr under node (better for multi-threaded apps). -- The usage of `EM_BOOL` in the emscripten API has been repalced with C/C++ - bool. This change should not be observable since `EM_BOOL` has been - equivilent to `bool` since #22157. (#22155) 3.1.65 - 08/22/24 ----------------- diff --git a/test/fetch/test_fetch_persist.c b/test/fetch/test_fetch_persist.c index cc3e465d09f3..7f3510d685e5 100644 --- a/test/fetch/test_fetch_persist.c +++ b/test/fetch/test_fetch_persist.c @@ -5,6 +5,7 @@ #include #include +#include #include void downloadSucceeded(emscripten_fetch_t *fetch) { diff --git a/test/fetch/test_fetch_progress.c b/test/fetch/test_fetch_progress.c index cc537366c265..666739cdb0f8 100644 --- a/test/fetch/test_fetch_progress.c +++ b/test/fetch/test_fetch_progress.c @@ -5,6 +5,7 @@ #include #include +#include #include void downloadSucceeded(emscripten_fetch_t *fetch) { diff --git a/test/fetch/test_fetch_stream_async.c b/test/fetch/test_fetch_stream_async.c index 7029c73fa285..500623337cfc 100644 --- a/test/fetch/test_fetch_stream_async.c +++ b/test/fetch/test_fetch_stream_async.c @@ -5,6 +5,7 @@ #include #include +#include #include void downloadSucceeded(emscripten_fetch_t *fetch) {