mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-06-28 16:17:28 -04:00
Fix CppCheck in rsgixs.h
/libretroshare/src/gxs/rsgixs.h:179: warning: Cppcheck(uninitMemberVar): Member variable 'GixsReputation::reputation_level' is not initialized in the constructor.
This commit is contained in:
parent
eb7655c14f
commit
718c09e6d7
1 changed files with 1 additions and 1 deletions
|
@ -176,7 +176,7 @@ public:
|
|||
class GixsReputation
|
||||
{
|
||||
public:
|
||||
GixsReputation() {}
|
||||
GixsReputation() :reputation_level(0) {}
|
||||
|
||||
RsGxsId id;
|
||||
uint32_t reputation_level ;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue