summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/misc/countedobj.cpp45
1 files changed, 0 insertions, 45 deletions
diff --git a/src/misc/countedobj.cpp b/src/misc/countedobj.cpp
index a96537977..116fa3160 100644
--- a/src/misc/countedobj.cpp
+++ b/src/misc/countedobj.cpp
@@ -19,48 +19,3 @@ int32 SimpleCountedObject::Release()
}
return res;
}
-
-/* $Id$ */
-
-#include "../stdafx.h"
-
-#include "countedptr.hpp"
-
-int32 SimpleCountedObject::AddRef()
-{
- return ++m_ref_cnt;
-}
-
-int32 SimpleCountedObject::Release()
-{
- int32 res = --m_ref_cnt;
- assert(res >= 0);
- if (res == 0) {
- FinalRelease();
- delete this;
- }
- return res;
-}
-
-/* $Id$ */
-
-#include "../stdafx.h"
-
-#include "countedptr.hpp"
-
-int32 SimpleCountedObject::AddRef()
-{
- return ++m_ref_cnt;
-}
-
-int32 SimpleCountedObject::Release()
-{
- int32 res = --m_ref_cnt;
- assert(res >= 0);
- if (res == 0) {
- FinalRelease();
- delete this;
- }
- return res;
-}
-