Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: src/DefaultFileSystem.cpp

Issue 5163715573841920: Issue 768 - Switch from TR1 to C++11 (Closed)
Patch Set: rebase Created Aug. 5, 2015, 10:38 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);

Powered by Google App Engine
This is Rietveld