Skip to content

Commit 63244cf

Browse files
committed
fix
1 parent ca9aa92 commit 63244cf

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/null/null_plugin.cc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -488,19 +488,19 @@ void NullPlugin::onDelete(uint64_t context_id) {
488488

489489
namespace 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

0 commit comments

Comments
 (0)