diff options
author | click <none@none> | 2010-08-21 09:53:04 +0200 |
---|---|---|
committer | click <none@none> | 2010-08-21 09:53:04 +0200 |
commit | f7ad5b26243c44b37c496021b75d98bc72fcdf4a (patch) | |
tree | 5da1a2616c2f6a9ff2c8d414b7aa020e190ceefb /src/server/shared/Database/MySQLConnection.cpp | |
parent | 6939c92a7654b8e1af92d8bf66019561507770ce (diff) |
Core/Build: Clean up more nonPCH-issues + fix a warning in Timer.h (unsigned/signed cast)
--HG--
branch : trunk
Diffstat (limited to 'src/server/shared/Database/MySQLConnection.cpp')
-rw-r--r-- | src/server/shared/Database/MySQLConnection.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/server/shared/Database/MySQLConnection.cpp b/src/server/shared/Database/MySQLConnection.cpp index 9f16cbdf414..6da629b395e 100644 --- a/src/server/shared/Database/MySQLConnection.cpp +++ b/src/server/shared/Database/MySQLConnection.cpp @@ -15,7 +15,12 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ + + +#include "Common.h" + #include <mysql.h> + #include "DatabaseEnv.h" #include "QueryResult.h" #include "SQLOperation.h" |