Index: test/DefaultFileSystem.cpp |
=================================================================== |
--- a/test/DefaultFileSystem.cpp |
+++ b/test/DefaultFileSystem.cpp |
@@ -21,17 +21,17 @@ |
namespace |
{ |
const std::string testPath = "libadblockplus-t\xc3\xa4st-file"; |
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); |
} |
} |
TEST(DefaultFileSystemTest, WriteReadRemove) |
{ |
AdblockPlus::DefaultFileSystem fileSystem; |