Index: include/AdblockPlus/DefaultFileSystem.h |
diff --git a/include/AdblockPlus/DefaultFileSystem.h b/include/AdblockPlus/DefaultFileSystem.h |
index 6e32210b495461c6f20e34bb9e383f314dede86e..fcf7236b7409cc0673d75e754d387681ac37712b 100644 |
--- a/include/AdblockPlus/DefaultFileSystem.h |
+++ b/include/AdblockPlus/DefaultFileSystem.h |
@@ -37,9 +37,9 @@ namespace AdblockPlus |
class DefaultFileSystem : public FileSystem |
{ |
public: |
- std::tr1::shared_ptr<std::istream> Read(const std::string& path) const; |
+ std::shared_ptr<std::istream> Read(const std::string& path) const; |
void 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
sergei
2015/08/06 07:35:26
Fixed and the line below.
|
void Move(const std::string& fromPath, |
const std::string& toPath); |
void Remove(const std::string& path); |