summaryrefslogtreecommitdiff
path: root/inc/mm.h
diff options
context:
space:
mode:
Diffstat (limited to 'inc/mm.h')
-rw-r--r--inc/mm.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/inc/mm.h b/inc/mm.h
index 6081802..cee3f17 100644
--- a/inc/mm.h
+++ b/inc/mm.h
@@ -13,8 +13,10 @@ class MM : public Stage
* @return A newly allocated MM object.
*/
MM(Stage *next);
+ using Stage::advance;
- InstrDTO *advance(Response p) override;
+ private:
+ void advance_helper() override;
};
#endif /* MM_H_INCLUDED */