mirror of
https://github.com/EQEmu/Server.git
synced 2026-09-03 01:06:36 +00:00
Remove 'using namespaces std' fixes #61
This commit is contained in:
+1
-2
@@ -27,7 +27,6 @@
|
||||
#include "timer.h"
|
||||
|
||||
#include <vector>
|
||||
using namespace std;
|
||||
|
||||
//timeoutable objects automatically register themselves
|
||||
//with the global TimeoutManager object
|
||||
@@ -59,7 +58,7 @@ protected:
|
||||
void AddMember(Timeoutable *who);
|
||||
void DeleteMember(Timeoutable *who);
|
||||
|
||||
vector<Timeoutable *> members;
|
||||
std::vector<Timeoutable *> members;
|
||||
};
|
||||
|
||||
extern TimeoutManager timeout_manager;
|
||||
|
||||
Reference in New Issue
Block a user