summaryrefslogtreecommitdiff
path: root/src/tools/wasm-dis.cpp
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2018-02-05 15:55:21 -0800
committerGitHub <noreply@github.com>2018-02-05 15:55:21 -0800
commitd322b4f3ce429de5215fd52db24735b8f85ab878 (patch)
tree2e9ccead3d61d2dce7950eadb1a22de7d1c544b0 /src/tools/wasm-dis.cpp
parente33d487206e79b5e2fd1382627255a1ea39dad75 (diff)
downloadbinaryen-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.cpp6
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);