Skip to content

Commit c448226

Browse files
authored
Removed unused parameter name to fix compiler warning (#474)
* Removed name for unused parameter to avoid errors. Signed-off-by: Rachel Green <[email protected]>
1 parent 6110918 commit c448226

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/proxy-wasm/wasm_vm.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ struct WasmVmIntegration {
161161
virtual proxy_wasm::LogLevel getLogLevel() = 0;
162162
virtual void error(std::string_view message) = 0;
163163
// Allow integrations to handle specific FailStates differently.
164-
virtual void error(FailState fail_state, std::string_view message) { error(message); }
164+
virtual void error(FailState, std::string_view message) { error(message); }
165165
virtual void trace(std::string_view message) = 0;
166166
// Get a NullVm implementation of a function.
167167
// @param function_name is the name of the function with the implementation specific prefix.

0 commit comments

Comments
 (0)