1
0
Fork 0

added reserve()

This commit is contained in:
Jan Steemann 2015-08-04 16:23:21 +02:00
parent b591706484
commit 1af98f40fb
1 changed files with 3 additions and 0 deletions

View File

@ -177,6 +177,9 @@ LogfileManager::LogfileManager (TRI_server_t* server,
if (res != 0) { if (res != 0) {
THROW_ARANGO_EXCEPTION_MESSAGE(TRI_ERROR_INTERNAL, "could not compile regex"); THROW_ARANGO_EXCEPTION_MESSAGE(TRI_ERROR_INTERNAL, "could not compile regex");
} }
_transactions.reserve(32);
_failedTransactions.reserve(32);
} }
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////