Remove 'using namespaces std' fixes #61

This commit is contained in:
Michael Cook
2013-05-22 16:17:19 -04:00
parent 312100e1c6
commit 0fdfe025cb
190 changed files with 1801 additions and 2004 deletions
+1 -2
View File
@@ -30,7 +30,6 @@
#define MAX_CLIENT_LOG_MESSAGE_LENGTH 512
#include <vector>
using namespace std;
class Client;
@@ -50,7 +49,7 @@ public:
protected:
vector<Client *> entries[EQEMuLog::MaxLogID];
std::vector<Client *> entries[EQEMuLog::MaxLogID];
static char _buffer[MAX_CLIENT_LOG_MESSAGE_LENGTH+1];
};