~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/haildb/config_table_function.cc

  • Committer: Lee Bieber
  • Date: 2011-03-23 23:16:25 UTC
  • mfrom: (2247.1.2 build)
  • Revision ID: kalebral@gmail.com-20110323231625-61k77qbh7n1iu776
Merge Olaf - Use BOOST_FOREACH
Merge Olaf - Remove std::nothrow from new()

Show diffs side-by-side

added added

removed removed

Lines of Context:
150
150
 
151
151
int config_table_function_initialize(drizzled::module::Context &context)
152
152
{
153
 
  config_tool= new(std::nothrow)LibInnoDBConfigTool();
 
153
  config_tool= new LibInnoDBConfigTool();
154
154
  context.add(config_tool);
155
 
 
156
155
  return 0;
157
156
}