~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/version/versionudf.cc

  • Committer: Monty Taylor
  • Date: 2010-03-06 02:08:13 UTC
  • mto: This revision was merged to the branch mainline in revision 1381.
  • Revision ID: mordred@inaugust.com-20100306020813-c37d0b39004nl1zf
Remove plugin deinit.

Show diffs side-by-side

added added

removed removed

Lines of Context:
60
60
  return 0;
61
61
}
62
62
 
63
 
static int finalize(plugin::Context &context)
64
 
{
65
 
   context.remove(versionudf);
66
 
   delete versionudf;
67
 
   return 0;
68
 
}
69
 
 
70
 
DRIZZLE_PLUGIN(initialize, finalize, NULL);
 
63
DRIZZLE_PLUGIN(initialize, NULL);