~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/heap/hp_static.cc

  • Committer: Brian Aker
  • Date: 2010-01-27 18:58:12 UTC
  • Revision ID: brian@gaz-20100127185812-n62n0vwetnx8jrjy
Remove dead code.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
  a shared library
19
19
*/
20
20
 
21
 
#include "heapdef.h"
22
 
 
23
 
LIST *heap_open_list=0,*heap_share_list=0;
 
21
#include "heap_priv.h"
 
22
#include <list>
 
23
 
 
24
using namespace std;
 
25
 
 
26
list<HP_INFO *> heap_open_list;
 
27
list<HP_SHARE *> heap_share_list;
 
28