Skip to content

Commit

Permalink
fix(diagnostic_graph_aggregator): fix constParameterReference (#8054)
Browse files Browse the repository at this point in the history
fix:constParameterReference

Signed-off-by: kobayu858 <[email protected]>
  • Loading branch information
kobayu858 authored Jul 22, 2024
1 parent 851af5d commit f5b04b8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ void apply_edits(FileConfig & config)
config.links = std::move(filtered_links);
}

void topological_sort(FileConfig & config)
void topological_sort(const FileConfig & config)
{
std::unordered_map<UnitConfig *, int> degrees;
std::deque<UnitConfig *> units;
Expand Down

0 comments on commit f5b04b8

Please sign in to comment.