diff options
Diffstat (limited to 'test/common/ptr.h')
-rw-r--r-- | test/common/ptr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/common/ptr.h b/test/common/ptr.h index 986330057c..3071c3c0ca 100644 --- a/test/common/ptr.h +++ b/test/common/ptr.h @@ -43,7 +43,7 @@ class PtrTestSuite : public CxxTest::TestSuite void test_deleter() { Deleter<int> myDeleter; myDeleter.test = new bool(false); - + { Common::SharedPtr<int> p(new int(1), myDeleter); } @@ -55,7 +55,7 @@ class PtrTestSuite : public CxxTest::TestSuite void test_compare() { Common::SharedPtr<int> p1(new int(1)); Common::SharedPtr<int> p2; - + TS_ASSERT(p1); TS_ASSERT(!p2); |