aboutsummaryrefslogtreecommitdiff
path: root/common/ptr.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/ptr.h')
-rw-r--r--common/ptr.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/common/ptr.h b/common/ptr.h
index 7307038936..4d7fff1fc2 100644
--- a/common/ptr.h
+++ b/common/ptr.h
@@ -243,7 +243,7 @@ public:
operator bool() const { return _pointer != 0; }
~ScopedPtr() {
- delete _pointer;
+ delete _pointer;
}
/**
@@ -277,7 +277,6 @@ private:
PointerType _pointer;
};
-
} // End of namespace Common
#endif