Fix static analysis issues
[platform/core/appfw/app-installers.git] / src / common / utils / property.h
index 24befbb..31e561d 100644 (file)
@@ -24,7 +24,7 @@ class Property {
   Type& get() { return value_; }
   void set(Type val) { value_ = std::move(val); }
  private:
-  Type value_;
+  Type value_{};
 };
 
 #endif  // COMMON_UTILS_PROPERTY_H_