From d322b4f3ce429de5215fd52db24735b8f85ab878 Mon Sep 17 00:00:00 2001 From: Alon Zakai Date: Mon, 5 Feb 2018 15:55:21 -0800 Subject: 'std::string &' => 'std::string& ' (#1403) The & on the type is the proper convention. --- src/tools/wasm-ctor-eval.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/tools/wasm-ctor-eval.cpp') diff --git a/src/tools/wasm-ctor-eval.cpp b/src/tools/wasm-ctor-eval.cpp index da7c2042a..b71a0356a 100644 --- a/src/tools/wasm-ctor-eval.cpp +++ b/src/tools/wasm-ctor-eval.cpp @@ -377,10 +377,10 @@ int main(int argc, const char* argv[]) { }) .add("--emit-text", "-S", "Emit text instead of binary for the output file", Options::Arguments::Zero, - [&](Options *o, const std::string &argument) { emitBinary = false; }) + [&](Options *o, const std::string& argument) { emitBinary = false; }) .add("--debuginfo", "-g", "Emit names section and debug info", Options::Arguments::Zero, - [&](Options *o, const std::string &arguments) { debugInfo = true; }) + [&](Options *o, const std::string& arguments) { debugInfo = true; }) .add("--ctors", "-c", "Comma-separated list of global constructor functions to evaluate", Options::Arguments::One, [&](Options* o, const std::string& argument) { -- cgit v1.2.3