Skip to content

Commit 0089fb1

Browse files
committed
Remove virtual from a method that's causing issues to Envoy
Signed-off-by: Jonh Wendell <[email protected]>
1 parent 6f76bd5 commit 0089fb1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/proxy-wasm/context.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ class ContextBase : public RootInterface,
150150
const std::shared_ptr<PluginHandleBase> &plugin_handle); // Stream context.
151151
virtual ~ContextBase();
152152

153-
virtual WasmBase *wasm() const { return wasm_; }
153+
WasmBase *wasm() const { return wasm_; }
154154
uint32_t id() const { return id_; }
155155
// The VM Context used for calling "malloc" has an id_ == 0.
156156
bool isVmContext() const { return id_ == 0; }

0 commit comments

Comments
 (0)