Skip to content

Commit

Permalink
Plugin.ControlFlowGraph: Avoid using a reserved keyword as id because…
Browse files Browse the repository at this point in the history
… it breaks some graph viewers
  • Loading branch information
gompoc committed Aug 12, 2024
1 parent 6c70c94 commit 19fce16
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ private string GenerateGraphTitle(MethodAnalysisContext context)
public DotGraph GenerateGraph(ISILControlFlowGraph graph, MethodAnalysisContext method)
{
var directedGraph = new DotGraph()
.WithIdentifier("Graph")
.WithIdentifier("ControlFlowGraph")
.Directed()
.WithLabel(GenerateGraphTitle(method));

Expand Down

0 comments on commit 19fce16

Please sign in to comment.