~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/haildb/status_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:
102
102
 
103
103
int status_table_function_initialize(drizzled::module::Context &context)
104
104
{
105
 
  status_tool= new(std::nothrow)LibInnoDBStatusTool();
 
105
  status_tool= new LibInnoDBStatusTool();
106
106
  context.add(status_tool);
107
 
 
108
 
  return 0;
 
107
        return 0;
109
108
}