diff options
author | Adam <Adam@anope.org> | 2013-02-14 20:57:40 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2013-02-14 20:57:40 -0500 |
commit | 391f2822c8f6da7d6ffa8114817a8baf2aa265d5 (patch) | |
tree | b8c9c566481fe13083d12f0d750ba30ca3e87456 /include/serialize.h | |
parent | f0875c5d85e0a6c1d878aed01673c0d909a8d488 (diff) |
This Serialize::Destroy method isn't actually needed anymore. Fixes weirdness from a few Serializable items we had on the stack. Added a comment about why operator< in Reference fails.
Diffstat (limited to 'include/serialize.h')
-rw-r--r-- | include/serialize.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/serialize.h b/include/serialize.h index b136412e4..b74257f73 100644 --- a/include/serialize.h +++ b/include/serialize.h @@ -83,11 +83,6 @@ class CoreExport Serializable : public virtual Base /* Unique ID (per type, not globally) for this object */ unsigned int id; - /* Destroys this object. This is effectively the same thing as - * delete, however it properly cleans up after this object. - */ - void Destroy(); - /** Marks the object as potentially being updated "soon". */ void QueueUpdate(); |