Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(521)

Unified Diff: test/fuzzer/wasm-section-fuzzers.cc

Issue 2336233006: [wasm] C++ style: ErrorThrower& -> ErrorThrower* (Closed)
Patch Set: more Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/fuzzer/wasm-code.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/fuzzer/wasm-section-fuzzers.cc
diff --git a/test/fuzzer/wasm-section-fuzzers.cc b/test/fuzzer/wasm-section-fuzzers.cc
index 6d1c2a47b51a6fcd00a5bd1afbc43b39a49848ae..dd1d8432e691b087f42ac54b87d7a2d9707e5798 100644
--- a/test/fuzzer/wasm-section-fuzzers.cc
+++ b/test/fuzzer/wasm-section-fuzzers.cc
@@ -47,7 +47,7 @@ int fuzz_wasm_section(WasmSection::Code section, const uint8_t* data,
ErrorThrower thrower(i_isolate, "decoder");
std::unique_ptr<const WasmModule> module(testing::DecodeWasmModuleForTesting(
- i_isolate, &zone, thrower, buffer.begin(), buffer.end(), kWasmOrigin));
+ i_isolate, &zone, &thrower, buffer.begin(), buffer.end(), kWasmOrigin));
return 0;
}
« no previous file with comments | « test/fuzzer/wasm-code.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698