diff options
author | Alon Zakai <alonzakai@gmail.com> | 2018-02-05 15:55:21 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-05 15:55:21 -0800 |
commit | d322b4f3ce429de5215fd52db24735b8f85ab878 (patch) | |
tree | 2e9ccead3d61d2dce7950eadb1a22de7d1c544b0 /src/tools/wasm-dis.cpp | |
parent | e33d487206e79b5e2fd1382627255a1ea39dad75 (diff) | |
download | binaryen-d322b4f3ce429de5215fd52db24735b8f85ab878.tar.gz binaryen-d322b4f3ce429de5215fd52db24735b8f85ab878.tar.bz2 binaryen-d322b4f3ce429de5215fd52db24735b8f85ab878.zip |
'std::string &' => 'std::string& ' (#1403)
The & on the type is the proper convention.
Diffstat (limited to 'src/tools/wasm-dis.cpp')
-rw-r--r-- | src/tools/wasm-dis.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tools/wasm-dis.cpp b/src/tools/wasm-dis.cpp index e6fd7badd..d874b24aa 100644 --- a/src/tools/wasm-dis.cpp +++ b/src/tools/wasm-dis.cpp @@ -32,15 +32,15 @@ int main(int argc, const char *argv[]) { Options options("wasm-dis", "Un-assemble a .wasm (WebAssembly binary format) into a .wast (WebAssembly text format)"); options.add("--output", "-o", "Output file (stdout if not specified)", Options::Arguments::One, - [](Options *o, const std::string &argument) { + [](Options *o, const std::string& argument) { o->extra["output"] = argument; Colors::disable(); }) .add("--source-map", "-sm", "Consume source map from the specified file to add location information", Options::Arguments::One, - [&sourceMapFilename](Options *o, const std::string &argument) { sourceMapFilename = argument; }) + [&sourceMapFilename](Options *o, const std::string& argument) { sourceMapFilename = argument; }) .add_positional("INFILE", Options::Arguments::One, - [](Options *o, const std::string &argument) { + [](Options *o, const std::string& argument) { o->extra["infile"] = argument; }); options.parse(argc, argv); |