summaryrefslogtreecommitdiff
path: root/src/input_handler.hh
diff options
context:
space:
mode:
authorMaxime Coste <frrrwww@gmail.com>2016-11-28 13:59:55 +0000
committerMaxime Coste <frrrwww@gmail.com>2016-11-28 13:59:55 +0000
commit2f3a7112eafe7bfa6ddd9c6b8a3e6d11a44ce49d (patch)
treec3adad7f5e58664311e26f74b71b7a7ca96a66a0 /src/input_handler.hh
parent54d540021cd50dc78e58a127e4770dc7b26e161f (diff)
Add more memory domains to certain data
Diffstat (limited to 'src/input_handler.hh')
-rw-r--r--src/input_handler.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input_handler.hh b/src/input_handler.hh
index 14e9d048..43fd9ecb 100644
--- a/src/input_handler.hh
+++ b/src/input_handler.hh
@@ -106,7 +106,7 @@ private:
Context m_context;
friend class InputMode;
- Vector<RefPtr<InputMode>> m_mode_stack;
+ Vector<RefPtr<InputMode>, MemoryDomain::Client> m_mode_stack;
InputMode& current_mode() const { return *m_mode_stack.back(); }