summaryrefslogtreecommitdiff
path: root/src/lib/content.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-07-16 22:20:39 +0100
committerCarl Hetherington <cth@carlh.net>2013-07-16 22:20:39 +0100
commitbfc0b96db6cc6c2e94d93f9c4239adca14a6bb0c (patch)
tree1038f16144cfe58995e31650925f066b67fda677 /src/lib/content.cc
parente16c8ed02a0cb1f733a990d75a9de1bf50cf89bd (diff)
More noncopyable.
Diffstat (limited to 'src/lib/content.cc')
-rw-r--r--src/lib/content.cc11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/lib/content.cc b/src/lib/content.cc
index 49c579fb6..b49ea4316 100644
--- a/src/lib/content.cc
+++ b/src/lib/content.cc
@@ -57,17 +57,6 @@ Content::Content (shared_ptr<const Film> f, shared_ptr<const cxml::Node> node)
_start = node->number_child<Time> ("Start");
}
-Content::Content (Content const & o)
- : boost::enable_shared_from_this<Content> (o)
- , _film (o._film)
- , _file (o._file)
- , _digest (o._digest)
- , _start (o._start)
- , _change_signals_frequent (o._change_signals_frequent)
-{
-
-}
-
void
Content::as_xml (xmlpp::Node* node) const
{