Skip to content

Commit

Permalink
cxxrtl: capi: don't use deprecated invocation.
Browse files Browse the repository at this point in the history
  • Loading branch information
kivikakk authored and whitequark committed Jun 13, 2024
1 parent a55e859 commit 3ed2865
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backends/cxxrtl/runtime/cxxrtl/capi/cxxrtl_capi.cc
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ cxxrtl_handle cxxrtl_create_at(cxxrtl_toplevel design, const char *top_path_) {

cxxrtl_handle handle = new _cxxrtl_handle;
handle->module = std::move(design->module);
handle->module->debug_info(handle->objects, top_path);
handle->module->debug_info(&handle->objects, nullptr, top_path);
delete design;
return handle;
}
Expand Down

0 comments on commit 3ed2865

Please sign in to comment.