summaryrefslogtreecommitdiffstats
path: root/Tests/CMakeLib/testCMExtMemory.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/CMakeLib/testCMExtMemory.cxx')
-rw-r--r--Tests/CMakeLib/testCMExtMemory.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Tests/CMakeLib/testCMExtMemory.cxx b/Tests/CMakeLib/testCMExtMemory.cxx
index 2aeaf7f..d8932ce 100644
--- a/Tests/CMakeLib/testCMExtMemory.cxx
+++ b/Tests/CMakeLib/testCMExtMemory.cxx
@@ -26,9 +26,9 @@ public:
: value(v)
{
}
- ~Wrapper() { delete value; }
+ ~Wrapper() { delete this->value; }
- T* get() const { return value; }
+ T* get() const { return this->value; }
private:
T* value;