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

Unified Diff: include/AdblockPlus/LogSystem.h

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 | « include/AdblockPlus/JsValue.h ('k') | include/AdblockPlus/Notification.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/AdblockPlus/LogSystem.h
diff --git a/include/AdblockPlus/LogSystem.h b/include/AdblockPlus/LogSystem.h
index 47f7acaeaa9fca2d09f2e9ff878241a62bab818c..f56bb8430a61881c81f53db93bd5a004fa143bfc 100644
--- a/include/AdblockPlus/LogSystem.h
+++ b/include/AdblockPlus/LogSystem.h
@@ -19,8 +19,7 @@
#define ADBLOCK_PLUS_LOG_SYSTEM_H
#include <string>
-
-#include "tr1_memory.h"
+#include <memory>
namespace AdblockPlus
{
@@ -51,7 +50,7 @@ namespace AdblockPlus
/**
* Shared smart pointer to a `LogSystem` instance.
*/
- typedef std::tr1::shared_ptr<LogSystem> LogSystemPtr;
+ typedef std::shared_ptr<LogSystem> LogSystemPtr;
}
#endif
« no previous file with comments | « include/AdblockPlus/JsValue.h ('k') | include/AdblockPlus/Notification.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld