diff options
author | Shauren <shauren.trinity@gmail.com> | 2015-01-17 18:31:09 +0100 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2015-01-17 18:31:09 +0100 |
commit | e07054ff2df4cb10e5174a77ab23e9c96a5e1940 (patch) | |
tree | 5ba825ad8dd28aa26d7435f13f1a8e389cfa7dad /src/server/shared/Database/Implementation | |
parent | 8a30b70a20dd483067d402a7966fc147ca32d18a (diff) |
Build fix
Diffstat (limited to 'src/server/shared/Database/Implementation')
-rw-r--r-- | src/server/shared/Database/Implementation/HotfixDatabase.cpp | 2 |
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) \ |