summaryrefslogtreecommitdiff
path: root/gentoobrowse-api/service/utils/xmlUtils.h
diff options
context:
space:
mode:
Diffstat (limited to 'gentoobrowse-api/service/utils/xmlUtils.h')
-rw-r--r--gentoobrowse-api/service/utils/xmlUtils.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gentoobrowse-api/service/utils/xmlUtils.h b/gentoobrowse-api/service/utils/xmlUtils.h
index 158e134..a02df6c 100644
--- a/gentoobrowse-api/service/utils/xmlUtils.h
+++ b/gentoobrowse-api/service/utils/xmlUtils.h
@@ -3,7 +3,7 @@
#include <libxml++/parsers/domparser.h>
#include <boost/filesystem/path.hpp>
-#include <boost/optional.hpp>
+#include <optional>
namespace Gentoo {
namespace Utils {
@@ -11,7 +11,7 @@ namespace Gentoo {
public:
XmlDoc(const boost::filesystem::path &);
- boost::optional<Glib::ustring> getXPathValue(const Glib::ustring &);
+ std::optional<Glib::ustring> getXPathValue(const Glib::ustring &);
};
}
}