summaryrefslogtreecommitdiff
path: root/src/binary-reader-linker.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-linker.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-linker.cc')
-rw-r--r--src/binary-reader-linker.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/binary-reader-linker.cc b/src/binary-reader-linker.cc
index add37f61..d825ac18 100644
--- a/src/binary-reader-linker.cc
+++ b/src/binary-reader-linker.cc
@@ -284,7 +284,7 @@ Result BinaryReaderLinker::OnFunctionName(Index index, StringSlice name) {
Result read_binary_linker(LinkerInputBinary* input_info, LinkOptions* options) {
BinaryReaderLinker reader(input_info);
- ReadBinaryOptions read_options = WABT_READ_BINARY_OPTIONS_DEFAULT;
+ ReadBinaryOptions read_options;
read_options.read_debug_names = true;
read_options.log_stream = options->log_stream;
return read_binary(input_info->data, input_info->size, &reader,