X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Ffs%2Fstat_private.h;h=23019a5b6982c22df324cee04ea3a16de7cd60e9;hb=95a005d09584925e1d865caea57b9352c0770b00;hp=7b20638d36ed5b5a1e75d2f14ce9fb102dfc44c0;hpb=5a32939eb6e576c223e1be5f80226d9e628a2398;p=libs%2Fcore.git diff --git a/source/fs/stat_private.h b/source/fs/stat_private.h index 7b20638..23019a5 100644 --- a/source/fs/stat_private.h +++ b/source/fs/stat_private.h @@ -1,6 +1,7 @@ #ifndef MSP_FS_STAT_PRIVATE_H_ #define MSP_FS_STAT_PRIVATE_H_ +#include "stat.h" #include "stat_platform.h" namespace Msp { @@ -8,10 +9,10 @@ namespace FS { struct Stat::Private { - UserID owner_id; - GroupID group_id; + UserID owner_id = INVALID_UID; + GroupID group_id = INVALID_GID; - Private(); + Private() = default; Private(const Private &); ~Private();