diff options
author | bd-912 <bdunahu@colostate.edu> | 2024-04-17 15:38:56 -0600 |
---|---|---|
committer | bd-912 <bdunahu@colostate.edu> | 2024-04-17 15:38:56 -0600 |
commit | 3b1571fd410096eb20a9af9ebcee124ff1ea8eac (patch) | |
tree | 13e1f50d0f68d63ecb1fff14cf9d0091a691e3f5 /V2VM.java | |
parent | 6d68e534aa53f3879ebc8a4f5803e468dc86a6bc (diff) |
Allow CFG to compile by removing generic types
Diffstat (limited to 'V2VM.java')
-rw-r--r-- | V2VM.java | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -29,7 +29,7 @@ public class V2VM { ArrayList<ControlFlowGraph> cfgs = new ArrayList<ControlFlowGraph>(); for (VFunction f : prog.functions) { - CFGSimp<String, Void> cfg = new CFGSimp<String, Void>(f); + CFGSimp cfg = new CFGSimp(f); cfgs.add(cfg.getCFG()); } |