Skip to content

Commit

Permalink
feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
sbc100 committed Oct 1, 2024
1 parent 5579d64 commit 4f0230c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
-----------------
Expand Down Expand Up @@ -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
-----------------
Expand Down
1 change: 1 addition & 0 deletions test/fetch/test_fetch_persist.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <emscripten/fetch.h>

void downloadSucceeded(emscripten_fetch_t *fetch) {
Expand Down
1 change: 1 addition & 0 deletions test/fetch/test_fetch_progress.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <emscripten/fetch.h>

void downloadSucceeded(emscripten_fetch_t *fetch) {
Expand Down
1 change: 1 addition & 0 deletions test/fetch/test_fetch_stream_async.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <emscripten/fetch.h>

void downloadSucceeded(emscripten_fetch_t *fetch) {
Expand Down

0 comments on commit 4f0230c

Please sign in to comment.