diff options
author | juj <jujjyl@gmail.com> | 2016-06-21 21:34:39 +0100 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2016-06-21 13:34:39 -0700 |
commit | 52821472b93e551375b8df43cc1b8a7bfc18e8f5 (patch) | |
tree | 4d20c79c5a84f52148b32e9e890fffb9e9765d6f /src/support/archive.h | |
parent | 509319ac42a18b5a120ae9e45daac624affc07e1 (diff) | |
download | binaryen-52821472b93e551375b8df43cc1b8a7bfc18e8f5.tar.gz binaryen-52821472b93e551375b8df43cc1b8a7bfc18e8f5.tar.bz2 binaryen-52821472b93e551375b8df43cc1b8a7bfc18e8f5.zip |
Build fixes/workarounds to support Visual Studio 2013 build, which has trouble with some new C++11 constructs. (#581)
Diffstat (limited to 'src/support/archive.h')
-rw-r--r-- | src/support/archive.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/support/archive.h b/src/support/archive.h index 40fea2529..95af1ac94 100644 --- a/src/support/archive.h +++ b/src/support/archive.h @@ -97,8 +97,8 @@ class Archive { private: void setFirstRegular(const Child& c) { firstRegularData = c.data; } Buffer& data; - SubBuffer symbolTable = {nullptr, 0}; - SubBuffer stringTable = {nullptr, 0}; + SubBuffer symbolTable; + SubBuffer stringTable; const uint8_t* firstRegularData; }; |