File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -488,19 +488,19 @@ void NullPlugin::onDelete(uint64_t context_id) {
488488
489489namespace null_plugin {
490490
491- null_plugin:: RootContext *nullVmGetRoot (string_view root_id) {
491+ RootContext *nullVmGetRoot (string_view root_id) {
492492 auto null_vm = static_cast <NullVm *>(current_context_->wasmVm ());
493493 return static_cast <NullPlugin *>(null_vm->plugin_ .get ())->getRoot (root_id);
494494}
495495
496- null_plugin:: Context *nullVmGetContext (uint32_t context_id) {
496+ Context *nullVmGetContext (uint32_t context_id) {
497497 auto null_vm = static_cast <NullVm *>(current_context_->wasmVm ());
498498 return static_cast <NullPlugin *>(null_vm->plugin_ .get ())->getContext (context_id);
499499}
500500
501- null_plugin:: RootContext *getRoot (string_view root_id) { return nullVmGetRoot (root_id); }
501+ RootContext *getRoot (string_view root_id) { return nullVmGetRoot (root_id); }
502502
503- null_plugin:: Context *getContext (uint32_t context_id) { return nullVmGetContext (context_id); }
503+ Context *getContext (uint32_t context_id) { return nullVmGetContext (context_id); }
504504
505505} // namespace null_plugin
506506} // namespace proxy_wasm
You can’t perform that action at this time.
0 commit comments