Skip to content

Commit 5d15783

Browse files
authored
Add missing include for windows (#4627)
Without this Windows fails with: 'isdigit': is not a member of 'std'
1 parent 4cb74fc commit 5d15783

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/passes/ExtractFunction.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020
// This pass will run --remove-unused-module-elements automatically for you, in
2121
// order to remove as many things as possible.
2222

23+
#include <cctype>
24+
2325
#include "pass.h"
2426
#include "wasm-builder.h"
2527
#include "wasm.h"

0 commit comments

Comments
 (0)