]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/cmd_lusers.cpp
Remove an extern, partly because it's unused, partly because it then gets shadowed...
[user/henk/code/inspircd.git] / src / cmd_lusers.cpp
index ed4a3d997d0b44fea9ec5bf440a9039c9d15cd7a..8933efa048cb60108f1416f88fc36eb28f03c7f8 100644 (file)
  * ---------------------------------------------------
  */
 
-using namespace std;
-
-#include "inspircd_config.h"
-#include "inspircd.h"
-#include "inspircd_io.h"
-#include <string>
-#include <vector>
 #include "users.h"
-#include "ctables.h"
-#include "globals.h"
-#include "message.h"
 #include "commands.h"
-#include "inspstring.h"
 #include "helperfuncs.h"
-#include "hashcomp.h"
-#include "typedefs.h"
-#include "command_parse.h"
 #include "cmd_lusers.h"
 
 void cmd_lusers::Handle (char **parameters, int pcnt, userrec *user)
@@ -43,5 +29,3 @@ void cmd_lusers::Handle (char **parameters, int pcnt, userrec *user)
        WriteServ(user->fd,"254 %s %d :channels formed",user->nick,chancount());
        WriteServ(user->fd,"254 %s :I have %d clients and 0 servers",user->nick,local_count());
 }
-
-