]> git.tdb.fi Git - libs/core.git/blobdiff - source/fs/stat.h
Use nullptr instead of 0 for pointers
[libs/core.git] / source / fs / stat.h
index 3f056a5609eea802716037eb734c3d42ef51905d..c32e8798162787b40b47a4ff41d9c7603689e806 100644 (file)
@@ -1,8 +1,8 @@
 #ifndef MSP_FS_STAT_H_
 #define MSP_FS_STAT_H_
 
+#include <cstdint>
 #include <string>
-#include <msp/core/inttypes.h>
 #include <msp/time/timestamp.h>
 #include "path.h"
 
@@ -17,7 +17,7 @@ enum FileType
        SYMLINK
 };
 
-typedef UInt64 FileSize;
+typedef uint64_t FileSize;
 
 /**
 Holds file information.
@@ -33,16 +33,16 @@ private:
                std::string group;
        };
 
-       bool exists;
-       FileType type;
-       FileSize size;
-       FileSize alloc_size;
+       bool exists = false;
+       FileType type = UNKNOWN;
+       FileSize size = 0;
+       FileSize alloc_size = 0;
        Time::TimeStamp mtime;
        mutable OwnerInfo owner_info;
-       Private *priv;
+       Private *priv = nullptr;
 
 public:
-       Stat();
+       Stat() = default;
        Stat(const Stat &);
        Stat &operator=(const Stat &);
        ~Stat();