We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f707bb commit f60eb89Copy full SHA for f60eb89
include/proxy-wasm/wasm_vm.h
@@ -161,7 +161,7 @@ struct WasmVmIntegration {
161
virtual proxy_wasm::LogLevel getLogLevel() = 0;
162
virtual void error(std::string_view message) = 0;
163
// Allow integrations to handle specific FailStates differently.
164
- virtual void error(FailState /*fail_state*/, std::string_view message) { error(message); }
+ virtual void error(FailState, std::string_view message) { error(message); }
165
virtual void trace(std::string_view message) = 0;
166
// Get a NullVm implementation of a function.
167
// @param function_name is the name of the function with the implementation specific prefix.
0 commit comments