From e03e087430addcaf069d0cb7ffb6f167979cee23 Mon Sep 17 00:00:00 2001 From: Paul Merrill Date: Fri, 5 Dec 2014 08:32:54 -0800 Subject: [PATCH] c++11: xml.h --- src/xml.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/xml.h b/src/xml.h index 6dc16a9..a3ef8bf 100644 --- a/src/xml.h +++ b/src/xml.h @@ -27,9 +27,9 @@ #ifndef XML_H #define XML_H +#include #include -#include #include #ifndef LIBXML_TREE_ENABLED @@ -87,11 +87,11 @@ public: operator bool() const; private: - boost::shared_ptr doc; + std::shared_ptr doc; std::string path_; }; -typedef boost::shared_ptr XMLRef; +typedef std::shared_ptr XMLRef; #endif -- 2.11.4.GIT