summaryrefslogtreecommitdiffhomepage
path: root/logic/state.hpp
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2017-05-06 13:23:44 +0200
committerStanislaw Halik <sthalik@misaki.pl>2017-05-10 11:19:22 +0200
commit03c5a15199b34b564314ac222d51ab687fc97a93 (patch)
treec130aa8785dc273090dbe0f3fa04e5055d851483 /logic/state.hpp
parent632cd5bf7778cb9062633f8d27ecd6aadcaa5d28 (diff)
get rid of the silly mem -> shared_ptr alias
Diffstat (limited to 'logic/state.hpp')
-rw-r--r--logic/state.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/logic/state.hpp b/logic/state.hpp
index f5892557..8bef71ad 100644
--- a/logic/state.hpp
+++ b/logic/state.hpp
@@ -26,5 +26,5 @@ struct State
Modules modules;
main_settings s;
Mappings pose;
- mem<Work> work;
+ std::shared_ptr<Work> work;
};