summaryrefslogtreecommitdiff
path: root/inc/wb.h
diff options
context:
space:
mode:
Diffstat (limited to 'inc/wb.h')
-rw-r--r--inc/wb.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/inc/wb.h b/inc/wb.h
index b1d65f7..9a708a6 100644
--- a/inc/wb.h
+++ b/inc/wb.h
@@ -7,9 +7,14 @@
class WB : public Stage
{
public:
- using Stage::Stage;
+ /**
+ * Constructor.
+ * @param The next stage in the pipeline.
+ * @return A newly allocated WB object.
+ */
+ WB(Stage *next);
- Response advance(InstrDTO &i) override;
+ Response advance(InstrDTO &next_instr, Response p) override;
};
#endif /* WB_H_INCLUDED */