Remove boost dependency
[platform/core/appfw/app-installers.git] / src / pkg_initdb / manifest_loader.h
index d2f6135..f938605 100644 (file)
@@ -9,7 +9,7 @@
 #include <string>
 #include <tuple>
 
-namespace bf = boost::filesystem;
+namespace fs = std::filesystem;
 
 using ManifestInfo = std::tuple<std::string, std::string, std::string>;
 
@@ -19,7 +19,7 @@ class ManifestLoader {
   std::list<ManifestInfo> LoadManifest();
 
  private:
-  bf::path path_;
+  fs::path path_;
 };
 
 #endif  // PKG_INITDB_MANIFEST_LOADER_H_