diff options
author | Alon Zakai <azakai@google.com> | 2019-04-26 16:59:41 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-26 16:59:41 -0700 |
commit | db9124f1de0478dcac525009b6f1589b44a7edd8 (patch) | |
tree | fa26395a0f6cca53cf5cb6e10189f989c5bfa847 /src/wasm-io.h | |
parent | 87636dccd404a340d75acb1d96301581343f29ca (diff) | |
download | binaryen-db9124f1de0478dcac525009b6f1589b44a7edd8.tar.gz binaryen-db9124f1de0478dcac525009b6f1589b44a7edd8.tar.bz2 binaryen-db9124f1de0478dcac525009b6f1589b44a7edd8.zip |
Apply format changes from #2048 (#2059)
Mass change to apply clang-format to everything. We are applying this in a PR by me so the (git) blame is all mine ;) but @aheejin did all the work to get clang-format set up and all the manual work to tidy up some things to make the output nicer in #2048
Diffstat (limited to 'src/wasm-io.h')
-rw-r--r-- | src/wasm-io.h | 21 |
1 files changed, 13 insertions, 8 deletions
diff --git a/src/wasm-io.h b/src/wasm-io.h index 6d8dcc6e5..9c772f115 100644 --- a/src/wasm-io.h +++ b/src/wasm-io.h @@ -21,9 +21,9 @@ #ifndef wasm_wasm_io_h #define wasm_wasm_io_h -#include "wasm.h" #include "parsing.h" #include "support/file.h" +#include "wasm.h" namespace wasm { @@ -40,12 +40,13 @@ public: // read text void readText(std::string filename, Module& wasm); // read binary - void readBinary(std::string filename, Module& wasm, - std::string sourceMapFilename=""); + void readBinary(std::string filename, + Module& wasm, + std::string sourceMapFilename = ""); // read text or binary, checking the contents for what it is. If `filename` is // empty, read from stdin. - void read(std::string filename, Module& wasm, - std::string sourceMapFilename=""); + void + read(std::string filename, Module& wasm, std::string sourceMapFilename = ""); // check whether a file is a wasm binary bool isBinaryFile(std::string filename); @@ -64,8 +65,12 @@ public: void setBinary(bool binary_) { binary = binary_; } void setDebugInfo(bool debugInfo_) { debugInfo = debugInfo_; } void setSymbolMap(std::string symbolMap_) { symbolMap = symbolMap_; } - void setSourceMapFilename(std::string sourceMapFilename_) { sourceMapFilename = sourceMapFilename_; } - void setSourceMapUrl(std::string sourceMapUrl_) { sourceMapUrl = sourceMapUrl_; } + void setSourceMapFilename(std::string sourceMapFilename_) { + sourceMapFilename = sourceMapFilename_; + } + void setSourceMapUrl(std::string sourceMapUrl_) { + sourceMapUrl = sourceMapUrl_; + } // write text void writeText(Module& wasm, Output& output); @@ -80,6 +85,6 @@ public: void write(Module& wasm, std::string filename); }; -} +} // namespace wasm #endif // wasm_wasm_io_h |