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 42c49d8 commit a21abb5Copy full SHA for a21abb5
src/null/null_plugin.cc
@@ -285,7 +285,8 @@ null_plugin::RootContext *NullPlugin::ensureRootContext(uint64_t context_id) {
285
context_map_[context_id] = std::move(context);
286
} else {
287
// Default handlers.
288
- auto context = std::make_unique<null_plugin::RootContext>(context_id, root_id->view());
+ auto context = std::make_unique<null_plugin::RootContext>(static_cast<uint32_t>(context_id),
289
+ root_id->view());
290
root_context = context->asRoot();
291
292
}
0 commit comments