summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2020-12-30 13:41:37 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2020-12-30 13:41:37 +0000
commit70844e92d15da026e21aefce1ac835140b5a6d1c (patch)
tree82013b03c5010cefa80c45efafe6ef3e20c13bd1
parentBuild config with boost-build pkg-config support (diff)
downloadgentoobrowse-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.h2
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 &);
};