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 authored and whitequark committed Jun 13, 2024
1 parent 3ed2865 commit 62bff3a
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 62bff3a

Please sign in to comment.