| Index: include/AdblockPlus/JsValue.h |
| diff --git a/include/AdblockPlus/JsValue.h b/include/AdblockPlus/JsValue.h |
| index 44535f92711382aa905576c59a283a82e3e4c490..fb76efff6f475b83c93175f3e52c17897b89874a 100644 |
| --- a/include/AdblockPlus/JsValue.h |
| +++ b/include/AdblockPlus/JsValue.h |
| @@ -21,7 +21,7 @@ |
| #include <stdint.h> |
| #include <string> |
| #include <vector> |
| -#include "tr1_memory.h" |
| +#include <memory> |
| #include "V8ValueHolder.h" |
| namespace v8 |
| @@ -36,12 +36,12 @@ namespace AdblockPlus |
| class JsValue; |
| class JsEngine; |
| - typedef std::tr1::shared_ptr<JsEngine> JsEnginePtr; |
| + typedef std::shared_ptr<JsEngine> JsEnginePtr; |
| /** |
| * Shared smart pointer to a `JsValue` instance. |
| */ |
| - typedef std::tr1::shared_ptr<JsValue> JsValuePtr; |
| + typedef std::shared_ptr<JsValue> JsValuePtr; |
| /** |
| * List of JavaScript values. |