Commit ba049a25 authored by Bradley C. Kuszmaul's avatar Bradley C. Kuszmaul Committed by Yoni Fogel

Revert the change for #2276 so that the build works again. [t:2276]

git-svn-id: file:///svn/toku/tokudb@16786 c7de825b-a66e-492c-adef-691d508d4ae1
parent 2257b896
...@@ -3,14 +3,15 @@ ...@@ -3,14 +3,15 @@
#ident "Copyright (c) 2007 Tokutek Inc. All rights reserved." #ident "Copyright (c) 2007 Tokutek Inc. All rights reserved."
#include "toku_list.h"
// Included by db.h, defines some internal structures. These structures are inlined in some versions of db.h // Included by db.h, defines some internal structures. These structures are inlined in some versions of db.h
// the types DB_TXN and so forth have been defined. // the types DB_TXN and so forth have been defined.
// This list structure is repeated here (from toku_list.h) so that the db.h file will be standalone. Any code that depends on this list matching the structure in toku_list.h //// This list structure is repeated here (from toku_list.h) so that the db.h file will be standalone. Any code that depends on this list matching the structure in toku_list.h
// will get flagged by the compiler if someone changes one but not the other. See #2276. //// will get flagged by the compiler if someone changes one but not the other. See #2276.
struct toku_list { //struct toku_list {
struct toku_list *next, *prev; // struct toku_list *next, *prev;
}; //};
struct simple_dbt { struct simple_dbt {
u_int32_t len; u_int32_t len;
......
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