mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
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:
parent
9f5d08110c
commit
d234b8be5e
@ -43,7 +43,7 @@ public:
|
|||||||
xmlNodePtr node(unsigned int index);
|
xmlNodePtr node(unsigned int index);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
XPathWrapper(XMLWrapper &xmlWrapper);
|
explicit XPathWrapper(XMLWrapper &xmlWrapper);
|
||||||
|
|
||||||
XMLWrapper &mXMLWrapper;
|
XMLWrapper &mXMLWrapper;
|
||||||
xmlXPathContextPtr mContext;
|
xmlXPathContextPtr mContext;
|
||||||
|
Loading…
Reference in New Issue
Block a user