diff options
Diffstat (limited to 'src/resources/resource.h')
-rw-r--r-- | src/resources/resource.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/src/resources/resource.h b/src/resources/resource.h index 988b78a5..7f1f4836 100644 --- a/src/resources/resource.h +++ b/src/resources/resource.h @@ -38,9 +38,7 @@ class Resource DeleteImmediately }; - Resource(): - mRefCount(0) - {} + Resource() = default; /** * Increments the internal reference count. @@ -64,9 +62,9 @@ class Resource virtual ~Resource() {} private: - std::string mIdPath; /**< Path identifying this resource. */ - time_t mTimeStamp; /**< Time at which the resource was orphaned. */ - unsigned mRefCount; /**< Reference count. */ + std::string mIdPath; /**< Path identifying this resource. */ + time_t mTimeStamp; /**< Time at which the resource was orphaned. */ + unsigned mRefCount = 0; /**< Reference count. */ }; /** |