~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/memcached_query_cache/memcached_qc.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:
334
334
  context.add(query_cache_flush_func);
335
335
 
336
336
  /* Setup the module Data dict and status infos */
337
 
  query_cache_tool= new (nothrow) QueryCacheTool();
 
337
  query_cache_tool= new QueryCacheTool();
338
338
  context.add(query_cache_tool);
339
 
  query_cache_status= new (nothrow) QueryCacheStatusTool();
 
339
  query_cache_status= new QueryCacheStatusTool();
340
340
  context.add(query_cache_status);
341
 
  query_cached_tables= new (nothrow) CachedTables();
 
341
  query_cached_tables= new CachedTables();
342
342
  context.add(query_cached_tables);
343
343
  
344
344
  context.registerVariable(new sys_var_constrained_value<uint64_t>("expiry", expiry_time));