summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/base.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/include/base.h b/include/base.h
index 12538defa..fa3399e29 100644
--- a/include/base.h
+++ b/include/base.h
@@ -36,13 +36,12 @@ class classbase
/** Time that the object was instantiated (used for TS calculation etc)
*/
time_t age;
- static unsigned long id;
/** Constructor,
* Sets the object's time
*/
- classbase() { age = TIME; id++; }
- ~classbase() { id--; }
+ classbase() { age = TIME; }
+ ~classbase() { }
};
/** class Extensible is the parent class of many classes such as userrec and chanrec.