From 863d9fe32fbff286d4c359d6a5c29184ed511866 Mon Sep 17 00:00:00 2001 From: "Matthias P. Braendli" Date: Mon, 21 Dec 2015 22:53:23 +0100 Subject: Replace some boost shared_ptr by std ones --- src/RemoteControl.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/RemoteControl.h') diff --git a/src/RemoteControl.h b/src/RemoteControl.h index 46a828f..e7bb7fe 100644 --- a/src/RemoteControl.h +++ b/src/RemoteControl.h @@ -31,6 +31,7 @@ #include #include +#include #include #include #include @@ -105,7 +106,7 @@ class RemoteControllable { controller.enrol(this); } - virtual void enrol_at(boost::shared_ptr controller) { + virtual void enrol_at(std::shared_ptr controller) { controller->enrol(this); } -- cgit v1.2.3