summaryrefslogtreecommitdiff
path: root/inc/wb.h
diff options
context:
space:
mode:
authorbd <bdunahu@operationnull.com>2025-03-30 14:28:45 -0400
committerbd <bdunahu@operationnull.com>2025-03-30 14:28:45 -0400
commit8c46ba4f216aec9f512cd398317f891be9b07e84 (patch)
treecb502366f721c6bca60becc309fd9de288769d87 /inc/wb.h
parent916949133a5797772dcd6966e469c12230ffc3fa (diff)
Add mock stage, proper decode tests
Diffstat (limited to 'inc/wb.h')
-rw-r--r--inc/wb.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/inc/wb.h b/inc/wb.h
index 7c796ab..62cef17 100644
--- a/inc/wb.h
+++ b/inc/wb.h
@@ -13,8 +13,10 @@ class WB : public Stage
* @return A newly allocated WB object.
*/
WB(Stage *next);
-
- InstrDTO *advance(Response p) override;
+ using Stage::advance;
+
+ private:
+ void advance_helper() override;
};
#endif /* WB_H_INCLUDED */