diff options
Diffstat (limited to 'inc/wb.h')
-rw-r--r-- | inc/wb.h | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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 */ |