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

Unified Diff: include/AdblockPlus/DefaultFileSystem.h

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: 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);

Powered by Google App Engine
This is Rietveld