Fix CppCheck in XPathWrapper.h

/plugins/FeedReader/util/XPathWrapper.h:46: warning:
Cppcheck(noExplicitConstructor): Class 'XPathWrapper' has a constructor
with 1 argument that is not explicit.
This commit is contained in:
Phenom 2017-07-30 19:17:17 +02:00 committed by csoler
parent 9f5d08110c
commit d234b8be5e

View File

@ -43,7 +43,7 @@ public:
xmlNodePtr node(unsigned int index);
protected:
XPathWrapper(XMLWrapper &xmlWrapper);
explicit XPathWrapper(XMLWrapper &xmlWrapper);
XMLWrapper &mXMLWrapper;
xmlXPathContextPtr mContext;