diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-11-20 00:00:51 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-11-20 00:00:51 +0000 |
| commit | d324fc102df00d6dc62614938f78cf983a101dd4 (patch) | |
| tree | 646f8c9558cc21e769f7cefcd0248753f3bfebe3 /src/lib/content.cc | |
| parent | 633a7e06b94fc04f24d0945aec05b2f9b9d1ea8e (diff) | |
Use cxml::NodePtr.
Diffstat (limited to 'src/lib/content.cc')
| -rw-r--r-- | src/lib/content.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/content.cc b/src/lib/content.cc index e3ad42560..a41261998 100644 --- a/src/lib/content.cc +++ b/src/lib/content.cc @@ -153,7 +153,7 @@ Content::clone () const xmlpp::Document doc; xmlpp::Node* node = doc.create_root_node ("Content"); as_xml (node); - return content_factory (film, shared_ptr<cxml::Node> (new cxml::Node (node))); + return content_factory (film, cxml::NodePtr(new cxml::Node (node))); } string |
