Commit c9e449c3 authored by Rich Prohaska's avatar Rich Prohaska Committed by Yoni Fogel

make it compile with gcc, again. addresses #1185

git-svn-id: file:///svn/tokudb.1131b+1080a+1185@6412 c7de825b-a66e-492c-adef-691d508d4ae1
parent e6fc3162
...@@ -684,14 +684,14 @@ cget_heavi (BOOL success, BOOL find, char txn, int _key, int _val, ...@@ -684,14 +684,14 @@ cget_heavi (BOOL success, BOOL find, char txn, int _key, int _val,
#if defined(USE_BDB) #if defined(USE_BDB)
IGNORE(success); IGNORE(success);
IGNORE(find); IGNORE(find);
IGNORE(txn); IGNORE((size_t)txn);
IGNORE(_key); IGNORE((size_t)_key);
IGNORE(_val); IGNORE((size_t)_val);
IGNORE(_key_expect); IGNORE((size_t)_key_expect);
IGNORE(_val_expect); IGNORE((size_t)_val_expect);
IGNORE(direction); IGNORE((size_t)direction);
IGNORE(h); IGNORE(h);
IGNORE(r_h_expect); IGNORE((size_t)r_h_expect);
return; return;
#else #else
assert(txns[(int)txn] && cursors[(int)txn]); assert(txns[(int)txn] && cursors[(int)txn]);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment