From 7bbcd8405b0e9d04c74be1f13d1b54f3f72e7c7d Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 29 Dec 2019 19:33:28 -0500 Subject: Remove use of boost/utility.hpp --- src/Widget.hpp | 7 ++++--- wscript | 1 - 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Widget.hpp b/src/Widget.hpp index 038f880..f1c935f 100644 --- a/src/Widget.hpp +++ b/src/Widget.hpp @@ -19,17 +19,18 @@ #include -#include - #include template -class Widget : public boost::noncopyable { +class Widget { public: Widget(Glib::RefPtr xml, const std::string& name) { xml->get_widget(name, _me); } + Widget(const Widget&) = delete; + Widget& operator=(const Widget&) = delete; + void destroy() { delete _me; } W* get() { return _me; } diff --git a/wscript b/wscript index df61abd..2c0d813 100644 --- a/wscript +++ b/wscript @@ -99,7 +99,6 @@ def configure(conf): # Boost headers conf.check_cxx(header_name='boost/format.hpp') - conf.check_cxx(header_name='boost/utility.hpp') conf.env.PATCHAGE_VERSION = PATCHAGE_VERSION -- cgit v1.2.1