aboutsummaryrefslogtreecommitdiff
path: root/src/server/shared/Database/Implementation
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2015-01-17 18:31:09 +0100
committerShauren <shauren.trinity@gmail.com>2015-01-17 18:31:09 +0100
commite07054ff2df4cb10e5174a77ab23e9c96a5e1940 (patch)
tree5ba825ad8dd28aa26d7435f13f1a8e389cfa7dad /src/server/shared/Database/Implementation
parent8a30b70a20dd483067d402a7966fc147ca32d18a (diff)
Build fix
Diffstat (limited to 'src/server/shared/Database/Implementation')
-rw-r--r--src/server/shared/Database/Implementation/HotfixDatabase.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/shared/Database/Implementation/HotfixDatabase.cpp b/src/server/shared/Database/Implementation/HotfixDatabase.cpp
index 55f2c3e53fb..2003433ec40 100644
--- a/src/server/shared/Database/Implementation/HotfixDatabase.cpp
+++ b/src/server/shared/Database/Implementation/HotfixDatabase.cpp
@@ -29,7 +29,7 @@
// Force locale statments to appear exactly in locale declaration order, right after normal data fetch statement
#define PREPARE_LOCALE_STMT(stmtBase, loc, sql, con) \
- static_assert(stmtBase + loc == stmtBase##_##loc, "Invalid prepared statement index for " ## STRINGIZE(stmtBase##_##loc)); \
+ static_assert(stmtBase + loc == stmtBase##_##loc, "Invalid prepared statement index for " STRINGIZE(stmtBase##_##loc)); \
PrepareLocaleStatement(stmtBase##_##loc, loc, sql, con);
#define PREPARE_LOCALE_STMTS(stmtBase, sql, con) \