mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-22 12:18:27 +00:00
Remove 'using namespaces std' fixes #61
This commit is contained in:
+1
-2
@@ -18,7 +18,6 @@
|
||||
#include "../common/debug.h"
|
||||
#include <stdio.h>
|
||||
#include <iostream>
|
||||
using namespace std;
|
||||
#include <stdlib.h>
|
||||
#include "npc.h"
|
||||
#include "masterentity.h"
|
||||
@@ -45,7 +44,7 @@ void ZoneDatabase::AddLootTableToNPC(NPC* npc,uint32 loottable_id, ItemList* ite
|
||||
|
||||
// do coin
|
||||
if (lts->mincash > lts->maxcash) {
|
||||
cerr << "Error in loottable #" << loottable_id << ": mincash > maxcash" << endl;
|
||||
std::cerr << "Error in loottable #" << loottable_id << ": mincash > maxcash" << std::endl;
|
||||
}
|
||||
else if (lts->maxcash != 0) {
|
||||
uint32 cash = 0;
|
||||
|
||||
Reference in New Issue
Block a user