Remove boost dependency
[platform/core/appfw/app-installers.git] / src / common / step / filesystem / step_delta_patch.h
index 3bb3688..0c65166 100644 (file)
@@ -7,6 +7,7 @@
 
 #include <manifest_parser/utils/logging.h>
 
+#include <filesystem>
 #include <string>
 
 #include "common/installer_context.h"
@@ -45,7 +46,7 @@ class StepDeltaPatch : public Step {
   Status precheck() override;
 
  private:
-  boost::filesystem::path patch_dir_;
+  std::filesystem::path patch_dir_;
   std::string delta_root_;
 
   STEP_NAME(DeltaPatch)