summaryrefslogtreecommitdiff
path: root/project2/ice/sliceCompile.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'project2/ice/sliceCompile.cpp')
-rw-r--r--project2/ice/sliceCompile.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/project2/ice/sliceCompile.cpp b/project2/ice/sliceCompile.cpp
index 53832c9..83b5e65 100644
--- a/project2/ice/sliceCompile.cpp
+++ b/project2/ice/sliceCompile.cpp
@@ -5,13 +5,13 @@
std::mutex slicePreprocessor;
-SliceCompile::SliceCompile(const boost::filesystem::path & slice, const IceCompile::Deps & dep) :
+SliceCompile::SliceCompile(const std::filesystem::path & slice, const IceCompile::Deps & dep) :
IceCompile(slice, dep)
{
}
unsigned int
-SliceCompile::build(const boost::filesystem::path & in, FILE * out) const
+SliceCompile::build(const std::filesystem::path & in, FILE * out) const
{
std::vector<std::string> cppArgs;
std::lock_guard<std::mutex> lock(slicePreprocessor);
@@ -47,7 +47,7 @@ SliceCompile::build(const boost::filesystem::path & in, FILE * out) const
}
unsigned int
-SliceCompile::Build(const boost::filesystem::path & in, const boost::filesystem::path & outpath) const
+SliceCompile::Build(const std::filesystem::path & in, const std::filesystem::path & outpath) const
{
FILE * out = fopen(outpath.string().c_str(), "w");
if (!out) {
@@ -64,7 +64,7 @@ SliceCompile::Build(const boost::filesystem::path & in, const boost::filesystem:
}
unsigned int
-SliceCompile::Count(const boost::filesystem::path & in) const
+SliceCompile::Count(const std::filesystem::path & in) const
{
return build(in, NULL);
}
@@ -74,7 +74,7 @@ SliceCompile::Headers(FILE *) const
{
}
-boost::filesystem::path
+std::filesystem::path
SliceCompile::InputPath() const
{
return slice;