summaryrefslogtreecommitdiff
path: root/src/binary-reader-objdump.cc
diff options
context:
space:
mode:
authorBen Smith <binjimin@gmail.com>2017-06-19 10:00:05 -0700
committerGitHub <noreply@github.com>2017-06-19 10:00:05 -0700
commit4ada22587ee0693bdca843ad7bcfe40bdeed70a1 (patch)
tree85eb60dbc2cfe1d04c15b9533e8a1df8e0c180af /src/binary-reader-objdump.cc
parent5c9ed7ef98dda446e01a07c285051fd0e98d43c7 (diff)
downloadwabt-4ada22587ee0693bdca843ad7bcfe40bdeed70a1.tar.gz
wabt-4ada22587ee0693bdca843ad7bcfe40bdeed70a1.tar.bz2
wabt-4ada22587ee0693bdca843ad7bcfe40bdeed70a1.zip
Remove option default macros (#508)
Diffstat (limited to 'src/binary-reader-objdump.cc')
-rw-r--r--src/binary-reader-objdump.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/binary-reader-objdump.cc b/src/binary-reader-objdump.cc
index f80248ba..0209e699 100644
--- a/src/binary-reader-objdump.cc
+++ b/src/binary-reader-objdump.cc
@@ -887,7 +887,7 @@ Result read_binary_objdump(const uint8_t* data,
size_t size,
ObjdumpOptions* options,
ObjdumpState* state) {
- ReadBinaryOptions read_options = WABT_READ_BINARY_OPTIONS_DEFAULT;
+ ReadBinaryOptions read_options;
read_options.read_debug_names = true;
read_options.log_stream = options->log_stream;