diff options
author | click <none@none> | 2010-09-19 17:53:45 +0200 |
---|---|---|
committer | click <none@none> | 2010-09-19 17:53:45 +0200 |
commit | 907203fdd970ace312a05e99f28d67346d7937ce (patch) | |
tree | 4d1f6b64c3d427122a0c6f48628c5f66ca2395f1 | |
parent | 188165b7bffd48564e82673f8912119fa2ca6f75 (diff) |
Core/DBLayer: Shuffle an #include-statement around (initialize mysql connections before working on the rest) - Fixes nonPCH-builds.
--HG--
branch : trunk
-rw-r--r-- | src/server/shared/Database/QueryHolder.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/shared/Database/QueryHolder.cpp b/src/server/shared/Database/QueryHolder.cpp index dfb5792cc9d..e0411d242c3 100644 --- a/src/server/shared/Database/QueryHolder.cpp +++ b/src/server/shared/Database/QueryHolder.cpp @@ -16,9 +16,9 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ +#include "MySQLConnection.h" #include "QueryHolder.h" #include "PreparedStatement.h" -#include "MySQLConnection.h" #include "Log.h" bool SQLQueryHolder::SetQuery(size_t index, const char *sql) |