diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-07-10 19:12:04 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-07-10 19:12:04 +0000 |
commit | 57a5c3b9b33f0c7c55e7f5feee1df35de3482e16 (patch) | |
tree | 8f89d678897302931aad8b4286a3d654cf60f2c6 /include/base.h | |
parent | f6103acd925a1dc878728885bad32fbf76f62cea (diff) |
Take out broken id
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4305 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/base.h')
-rw-r--r-- | include/base.h | 5 |
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. |