commit | 145dbcd165d9d27298eb8888bc240e2d06a95464 | [log] [tgz] |
---|---|---|
author | Ben Wagner <[email protected]> | Thu Nov 03 14:40:50 2016 -0400 |
committer | Skia Commit-Bot <[email protected]> | Thu Nov 03 19:03:40 2016 +0000 |
tree | 461ac2a3fe607bdf1d72fd72ae9451a58490a1bc | |
parent | b1c7f88df9ec40b4efb52d314304adfbaf95697c [diff] [blame] |
Remove SkAutoTDelete. Replace with std::unique_ptr. Change-Id: I5806cfbb30515fcb20e5e66ce13fb5f3b8728176 Reviewed-on: https://skia-review.googlesource.com/4381 Commit-Queue: Ben Wagner <[email protected]> Reviewed-by: Mike Klein <[email protected]>
diff --git a/tests/GrMemoryPoolTest.cpp b/tests/GrMemoryPoolTest.cpp index 4a0a4c6..863574a 100644 --- a/tests/GrMemoryPoolTest.cpp +++ b/tests/GrMemoryPoolTest.cpp
@@ -55,11 +55,11 @@ } private: - static SkAutoTDelete<GrMemoryPool> gPool; + static std::unique_ptr<GrMemoryPool> gPool; char fChar; }; -SkAutoTDelete<GrMemoryPool> A::gPool; +std::unique_ptr<GrMemoryPool> A::gPool; class B : public A { public: