diff options
author | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-12-30 13:49:43 +0000 |
---|---|---|
committer | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-12-30 13:49:43 +0000 |
commit | 94fd751561acbf2ea0b830df8ed21eb3b6ccdc61 (patch) | |
tree | 83771b35a4dae51ae3bce89eac81dcfe2778437f /include | |
parent | dec1d4eba325e4f22aeab76784b436dd26e6d33a (diff) |
Remove an unneeded forward declaration and typedef
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8612 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include')
-rw-r--r-- | include/base.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/include/base.h b/include/base.h index 4f5cc2e3e..0d845dc79 100644 --- a/include/base.h +++ b/include/base.h @@ -20,15 +20,9 @@ #include <deque> #include <string> -/** Do we use this? -- Brain */ -typedef void* VoidPointer; - /** A private data store for an Extensible class */ typedef std::map<std::string,char*> ExtensibleStore; -/** Needed */ -class InspIRCd; - /** The base class for all inspircd classes. * Wherever possible, all classes you create should inherit from this, * giving them the ability to be passed to various core functions |