aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2015-03-04 12:15:38 +0100
committerShauren <shauren.trinity@gmail.com>2015-03-04 12:15:38 +0100
commit0652b1072a329a2397398f4e5f101e54d7b6deae (patch)
treebf2fcfdbbb7e0d58fa20eb0d6fc59e84cb18697c /src
parentdd6ce022eef3fbb8a13161f68a361f2879d50838 (diff)
Core/DataStores: Made prepared statement index argument for DB2Storage constructor required
Diffstat (limited to 'src')
-rw-r--r--src/server/shared/DataStores/DB2Store.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/shared/DataStores/DB2Store.h b/src/server/shared/DataStores/DB2Store.h
index 98ee059fd8a..4abec4f5386 100644
--- a/src/server/shared/DataStores/DB2Store.h
+++ b/src/server/shared/DataStores/DB2Store.h
@@ -48,7 +48,7 @@ class DB2Storage : public DB2StorageBase
public:
typedef DBStorageIterator<T> iterator;
- DB2Storage(char const* f, int32 preparedStmtIndex = -1)
+ DB2Storage(char const* f, int32 preparedStmtIndex)
: _indexTableSize(0), _fieldCount(0), _format(f), _dataTable(nullptr), _dataTableEx(nullptr), _hotfixStatement(preparedStmtIndex)
{
_indexTable.AsT = NULL;