summaryrefslogtreecommitdiff
path: root/inc/wb.h
diff options
context:
space:
mode:
Diffstat (limited to 'inc/wb.h')
-rw-r--r--inc/wb.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/inc/wb.h b/inc/wb.h
index b1d65f7..b8f5d8f 100644
--- a/inc/wb.h
+++ b/inc/wb.h
@@ -7,7 +7,12 @@
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;
};