~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/module/module.cc

  • Committer: Monty Taylor
  • Date: 2010-10-18 18:22:32 UTC
  • mto: This revision was merged to the branch mainline in revision 1860.
  • Revision ID: mordred@inaugust.com-20101018182232-bgh68kueqv5h82z2
Fixed a silly error- for_each is clearly in std:: ...

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
 
34
34
Module::~Module()
35
35
{
36
 
  for_each(sys_vars.begin(), sys_vars.end(), DeletePtr());
 
36
  std::for_each(sys_vars.begin(), sys_vars.end(), DeletePtr());
37
37
}
38
38
 
39
39
} /* namespace module */