Skip to content

Commit

Permalink
cxxrtl: don't need to specify a value for "path".
Browse files Browse the repository at this point in the history
Callers of the deprecated method had a path already.
  • Loading branch information
kivikakk committed Jun 12, 2024
1 parent 0fc18e6 commit 0c7b7fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backends/cxxrtl/runtime/cxxrtl/cxxrtl.h
Original file line number Diff line number Diff line change
Expand Up @@ -1582,7 +1582,7 @@ struct module {

// Compatibility method.
#if __has_attribute(deprecated)
__attribute__((deprecated("Use `debug_info(&items, /*scopes=*/nullptr, path);` instead. (`path` could be \"top \".)")))
__attribute__((deprecated("Use `debug_info(&items, /*scopes=*/nullptr, path);` instead.")))
#endif
void debug_info(debug_items &items, std::string path) {
debug_info(&items, /*scopes=*/nullptr, path);
Expand Down

0 comments on commit 0c7b7fb

Please sign in to comment.