From 4aaf01aafa2d9656fcd6d26fbc32c1f2f2b2aeba Mon Sep 17 00:00:00 2001
From: brain
Date: Fri, 10 Mar 2006 17:51:26 +0000
Subject: Tidyup and move ConvToStr to a publically accessible place
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3640 e03df62e-2008-0410-955e-edbf42e46eb7
---
src/modules/m_spanningtree.cpp | 7 -------
src/users.cpp | 11 -----------
2 files changed, 18 deletions(-)
(limited to 'src')
diff --git a/src/modules/m_spanningtree.cpp b/src/modules/m_spanningtree.cpp
index 177ef2123..21fdbd6fa 100644
--- a/src/modules/m_spanningtree.cpp
+++ b/src/modules/m_spanningtree.cpp
@@ -468,13 +468,6 @@ class Link
ConfigReader *Conf;
std::vector LinkBlocks;
-template inline string ConvToStr(const T &in)
-{
- stringstream tmp;
- if (!(tmp << in)) return string();
- return tmp.str();
-}
-
/* Yay for fast searches!
* This is hundreds of times faster than recursion
* or even scanning a linked list, especially when
diff --git a/src/users.cpp b/src/users.cpp
index 985ef8707..c7f74da0b 100644
--- a/src/users.cpp
+++ b/src/users.cpp
@@ -88,8 +88,6 @@ bool DoType(const char* tag, char** entries, void** values, int* types)
{
char* TypeName = (char*)values[0];
char* Classes = (char*)values[1];
- /*Config->ConfValue("type","name",j,TypeName,&Config->config_f);
- Config->ConfValue("type","classes",j,Classes,&Config->config_f);*/
opertypes[TypeName] = strdup(Classes);
log(DEBUG,"Read oper TYPE '%s' with classes '%s'",TypeName,Classes);
return true;
@@ -99,8 +97,6 @@ bool DoClass(const char* tag, char** entries, void** values, int* types)
{
char* ClassName = (char*)values[0];
char* CommandList = (char*)values[1];
- /*Config->ConfValue("class","name",k,ClassName,&Config->config_f);
- Config->ConfValue("class","commands",k,CommandList,&Config->config_f);*/
operclass[ClassName] = strdup(CommandList);
log(DEBUG,"Read oper CLASS '%s' with commands '%s'",ClassName,CommandList);
return true;
@@ -111,13 +107,6 @@ bool DoneClassesAndTypes(const char* tag)
return true;
}
-template inline string ConvToStr(const T &in)
-{
- stringstream tmp;
- if (!(tmp << in)) return string();
- return tmp.str();
-}
-
userrec::userrec()
{
// the PROPER way to do it, AVOID bzero at *ALL* costs
--
cgit v1.3.1-10-gc9f91