From 9941a616cbba8ad5dec07bdf908a1d08d81e568e Mon Sep 17 00:00:00 2001 From: brain Date: Mon, 10 Jul 2006 16:51:19 +0000 Subject: If you ask me, it looks a hell of a lot tidier without forcing the cast. git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4277 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/base.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/base.cpp') diff --git a/src/base.cpp b/src/base.cpp index eb6ea900a..a7aa456f2 100644 --- a/src/base.cpp +++ b/src/base.cpp @@ -63,13 +63,13 @@ bool Extensible::Shrink(const std::string &key) } } -char* Extensible::GetExt(const std::string &key) +/*char* Extensible::GetExt(const std::string &key) { - /* This was calling ExtensibleStore::find() twice, + * This was calling ExtensibleStore::find() twice, * once to see if there was a value, and again to * get that value if it was there. Now we store * the iterator so we only have to search for it once. - */ + * ExtensibleStore::iterator iter = this->Extension_Items.find(key); if(iter != this->Extension_Items.end()) @@ -80,7 +80,7 @@ char* Extensible::GetExt(const std::string &key) { return NULL; } -} +}*/ void Extensible::GetExtList(std::deque &list) { -- cgit v1.2.3