]> git.tdb.fi Git - libs/core.git/blobdiff - source/fs/stat_private.h
Mark constructors and destructors as default where appropriate
[libs/core.git] / source / fs / stat_private.h
index 7b20638d36ed5b5a1e75d2f14ce9fb102dfc44c0..a6da47351cfcd497ee2136aaae17fdfb881353b6 100644 (file)
@@ -8,10 +8,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();