diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2020-12-30 13:41:37 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2020-12-30 13:41:37 +0000 |
commit | 70844e92d15da026e21aefce1ac835140b5a6d1c (patch) | |
tree | 82013b03c5010cefa80c45efafe6ef3e20c13bd1 | |
parent | Build config with boost-build pkg-config support (diff) | |
download | gentoobrowse-api-70844e92d15da026e21aefce1ac835140b5a6d1c.tar.bz2 gentoobrowse-api-70844e92d15da026e21aefce1ac835140b5a6d1c.tar.xz gentoobrowse-api-70844e92d15da026e21aefce1ac835140b5a6d1c.zip |
Missing explicit on constructor
-rw-r--r-- | gentoobrowse-api/service/utils/xmlUtils.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gentoobrowse-api/service/utils/xmlUtils.h b/gentoobrowse-api/service/utils/xmlUtils.h index 82584cc..26e5da0 100644 --- a/gentoobrowse-api/service/utils/xmlUtils.h +++ b/gentoobrowse-api/service/utils/xmlUtils.h @@ -9,7 +9,7 @@ namespace Gentoo { namespace Utils { class XmlDoc : public xmlpp::DomParser { public: - XmlDoc(const std::filesystem::path &); + explicit XmlDoc(const std::filesystem::path &); std::optional<Glib::ustring> getXPathValue(const Glib::ustring &); }; |