Fix CppChecker in rsphoto.h

/libretroshare/src/retroshare/rsphoto.h:162: warning:
Cppcheck(noExplicitConstructor): Class 'RsPhotoComment' has a
constructor with 1 argument that is not explicit.
This commit is contained in:
Phenom 2017-07-27 12:54:57 +02:00 committed by csoler
parent dd4ed2a7f1
commit 10c46ee35c

View File

@ -159,7 +159,7 @@ class RsPhotoComment
public:
RsPhotoComment();
RsPhotoComment(const RsGxsPhotoCommentItem& comment);
explicit RsPhotoComment(const RsGxsPhotoCommentItem& comment);
RsPhotoComment& operator=(const RsGxsPhotoCommentItem& comment);