From be8dc4fa6e398d600d3844752bb513f32ba3fdf3 Mon Sep 17 00:00:00 2001 From: James Cherry Date: Wed, 5 Feb 2025 13:54:03 -0800 Subject: [PATCH] compile error from PR#200 Signed-off-by: James Cherry --- verilog/VerilogReader.hh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/verilog/VerilogReader.hh b/verilog/VerilogReader.hh index 79c5c467..223b98b6 100644 --- a/verilog/VerilogReader.hh +++ b/verilog/VerilogReader.hh @@ -147,7 +147,8 @@ public: int to_index); VerilogModule *module(Cell *cell); Instance *linkNetwork(const char *top_cell_name, - bool make_black_boxes); + bool make_black_boxes, + bool delete_modules); const char *filename() const { return filename_.c_str(); } void incrLine(); Report *report() const { return report_; }