~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/uncompressed_length/uncompressed_length.cc

Merged plugin-registration.

Show diffs side-by-side

added added

removed removed

Lines of Context:
58
58
 
59
59
static int uncompressed_lengthudf_plugin_init(void *p)
60
60
{
61
 
  Function_builder **f = (Function_builder**) p;
 
61
  Function_builder **f = static_cast<Function_builder**>(p);
62
62
 
63
63
  *f= &uncompressed_lengthudf;
64
64
 
67
67
 
68
68
static int uncompressed_lengthudf_plugin_deinit(void *p)
69
69
{
70
 
  Function_builder *udff = (Function_builder *) p;
 
70
  Function_builder *udff = static_cast<Function_builder *>(p);
71
71
  (void)udff;
72
72
  return 0;
73
73
}