[7037] Avoid unneeded #ifdef

This commit is contained in:
VladimirMangos 2009-01-06 13:17:24 +03:00
parent 93bcb0b91d
commit 221a60266b
2 changed files with 2 additions and 6 deletions

View file

@ -23,11 +23,7 @@
#include "Policies/SingletonImp.h"
#include "Util.h"
#ifdef DO_POSTGRESQL
extern DatabasePostgre loginDatabase;
#else
extern DatabaseMysql loginDatabase;
#endif
extern DatabaseType loginDatabase;
INSTANTIATE_SINGLETON_1(AccountMgr);

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "7036"
#define REVISION_NR "7037"
#endif // __REVISION_NR_H__