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

Unified Diff: test/DefaultFileSystem.cpp

Issue 5163715573841920: Issue 768 - Switch from TR1 to C++11 (Closed)
Patch Set: fix including of <memory> Created Aug. 7, 2015, 6:07 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
« no previous file with comments | « test/ConsoleJsObject.cpp ('k') | test/FileSystemJsObject.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/DefaultFileSystem.cpp
diff --git a/test/DefaultFileSystem.cpp b/test/DefaultFileSystem.cpp
index 00d39437959dbb66c4b3a350f01cfba57dbb2bf6..9ac3f011719bb0caec8efe53a07f9365c1ac93ad 100644
--- a/test/DefaultFileSystem.cpp
+++ b/test/DefaultFileSystem.cpp
@@ -26,7 +26,7 @@ namespace
void WriteString(AdblockPlus::FileSystem& fileSystem,
const std::string& content)
{
- std::tr1::shared_ptr<std::stringstream> input(new std::stringstream);
+ std::shared_ptr<std::stringstream> input(new std::stringstream);
*input << content;
fileSystem.Write(testPath, input);
}
« no previous file with comments | « test/ConsoleJsObject.cpp ('k') | test/FileSystemJsObject.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld