summaryrefslogtreecommitdiff
path: root/src/binary-reader.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/binary-reader.h')
-rw-r--r--src/binary-reader.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/binary-reader.h b/src/binary-reader.h
index 5f13ebe5..6e4b929f 100644
--- a/src/binary-reader.h
+++ b/src/binary-reader.h
@@ -24,11 +24,11 @@
#include "common.h"
#define WABT_READ_BINARY_OPTIONS_DEFAULT \
- { NULL, WABT_FALSE }
+ { NULL, false }
typedef struct WabtReadBinaryOptions {
struct WabtStream* log_stream;
- WabtBool read_debug_names;
+ bool read_debug_names;
} WabtReadBinaryOptions;
typedef struct WabtBinaryReaderContext {
@@ -94,7 +94,7 @@ typedef struct WabtBinaryReader {
WabtResult (*on_import_global)(uint32_t import_index,
uint32_t global_index,
WabtType type,
- WabtBool mutable_,
+ bool mutable_,
void* user_data);
WabtResult (*end_import_section)(WabtBinaryReaderContext* ctx);
@@ -133,7 +133,7 @@ typedef struct WabtBinaryReader {
WabtResult (*on_global_count)(uint32_t count, void* user_data);
WabtResult (*begin_global)(uint32_t index,
WabtType type,
- WabtBool mutable_,
+ bool mutable_,
void* user_data);
WabtResult (*begin_global_init_expr)(uint32_t index, void* user_data);
WabtResult (*end_global_init_expr)(uint32_t index, void* user_data);