| Index: src/DefaultFileSystem.cpp |
| diff --git a/src/DefaultFileSystem.cpp b/src/DefaultFileSystem.cpp |
| index e2210d92497197d89805a174eb88fcc896c5acc0..1e0a5e7b764a0e36107c224727a0837435b9d4ec 100644 |
| --- a/src/DefaultFileSystem.cpp |
| +++ b/src/DefaultFileSystem.cpp |
| @@ -66,17 +66,17 @@ namespace |
| #endif |
| } |
| -std::tr1::shared_ptr<std::istream> |
| +std::shared_ptr<std::istream> |
| DefaultFileSystem::Read(const std::string& path) const |
| { |
| - std::tr1::shared_ptr<std::istream> result(new std::ifstream(NormalizePath(path).c_str())); |
| + std::shared_ptr<std::istream> result(new std::ifstream(NormalizePath(path).c_str())); |
| if (result->fail()) |
| throw RuntimeErrorWithErrno("Failed to open " + path); |
| return result; |
| } |
| void DefaultFileSystem::Write(const std::string& path, |
| - std::tr1::shared_ptr<std::istream> data) |
| + std::shared_ptr<std::istream> data) |
|
Felix Dahlke
2015/08/05 21:28:04
Nit: This was wrapped because it didn't fit in 80
Wladimir Palant
2015/08/06 12:24:54
Sergei didn't reply for some reason but this won't
Felix Dahlke
2015/08/06 18:19:01
True, my bad.
|
| { |
| std::ofstream file(NormalizePath(path).c_str(), std::ios_base::out | std::ios_base::binary); |
| file << Utils::Slurp(*data); |