~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/information_schema_dictionary/dictionary.cc

  • Committer: Olaf van der Spek
  • Date: 2011-03-23 09:26:52 UTC
  • mto: (2247.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 2248.
  • Revision ID: olafvdspek@gmail.com-20110323092652-d3e8lutxy8vu2frb
Remove std::nothrow from new()

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
 
47
47
static int init(drizzled::module::Context &context)
48
48
{
49
 
  check_constraints = new(std::nothrow)CheckConstraints;
50
 
  column_domain_usage = new(std::nothrow)ColumnDomainUsage;
51
 
  column_privileges = new(std::nothrow)ColumnPrivileges;
52
 
  columns = new(std::nothrow)Columns;
53
 
  constraint_column_usage = new(std::nothrow)ConstraintColumnUsage;
54
 
  constraint_table_usage = new(std::nothrow)ConstraintTableUsage;
55
 
  domain_constraints = new(std::nothrow)DomainConstraints;
56
 
  domains = new(std::nothrow)Domains;
57
 
  key_column_usage = new(std::nothrow)KeyColumnUsage;
58
 
  parameters = new(std::nothrow)Parameters;
59
 
  referential_constraints = new(std::nothrow)ReferentialConstraints;
60
 
  routines = new(std::nothrow)Routines;
61
 
  routine_columns = new(std::nothrow)RoutineColumns;
62
 
  schemata = new(std::nothrow)Schemata;
63
 
  table_constraints = new(std::nothrow)TableConstraints;
64
 
  table_privileges = new(std::nothrow)TablePriviledges;
65
 
  tables = new(std::nothrow)Tables;
66
 
  view_column_usage = new(std::nothrow)ViewColumnUsage;
67
 
  view_table_usage = new(std::nothrow)ViewTableUsage;
68
 
  views = new(std::nothrow)Views;
 
49
  check_constraints = new CheckConstraints;
 
50
  column_domain_usage = new ColumnDomainUsage;
 
51
  column_privileges = new ColumnPrivileges;
 
52
  columns = new Columns;
 
53
  constraint_column_usage = new ConstraintColumnUsage;
 
54
  constraint_table_usage = new ConstraintTableUsage;
 
55
  domain_constraints = new DomainConstraints;
 
56
  domains = new Domains;
 
57
  key_column_usage = new KeyColumnUsage;
 
58
  parameters = new Parameters;
 
59
  referential_constraints = new ReferentialConstraints;
 
60
  routines = new Routines;
 
61
  routine_columns = new RoutineColumns;
 
62
  schemata = new Schemata;
 
63
  table_constraints = new TableConstraints;
 
64
  table_privileges = new TablePriviledges;
 
65
  tables = new Tables;
 
66
  view_column_usage = new ViewColumnUsage;
 
67
  view_table_usage = new ViewTableUsage;
 
68
  views = new Views;
69
69
 
70
70
  context.add(check_constraints);
71
71
  context.add(column_domain_usage);