~ubuntu-branches/ubuntu/lucid/ardour/lucid-proposed

« back to all changes in this revision

Viewing changes to libs/sigc++2/sigc++/adaptors/adaptor_trait.h

  • Committer: Bazaar Package Importer
  • Author(s): Luke Yelavich
  • Date: 2008-07-29 11:27:04 UTC
  • mfrom: (1.1.15 upstream)
  • Revision ID: james.westby@ubuntu.com-20080729112704-x1rmgb4tjotjyu5u
Tags: 1:2.5-0ubuntu1
* New upstream release.
* debian/patches/s390-FTBFS.patch: Dropped, as it fails to apply, and
  Ubuntu doesn't concern itself with s390.
* debian/control:
  - Fix package description, thanks to the patch in Debian bug #485892.
  - Metadata cleanup and sync control/control.in files.
  - Add libaubio-dev to Build-Depends.

Show diffs side-by-side

added added

removed removed

Lines of Context:
251
251
  { return functor_(); }
252
252
 
253
253
 
 
254
//template specialization of visit_each<>(action, functor):
254
255
/** Performs a functor on each of the targets of a functor.
255
256
 * The function overload for sigc::adaptor_functor performs a functor
256
257
 * on the functor stored in the sigc::adaptor_functor object.
261
262
void visit_each(const T_action& _A_action,
262
263
                const adaptor_functor<T_functor>& _A_target)
263
264
{
264
 
  visit_each(_A_action, _A_target.functor_);
 
265
  //The extra sigc:: prefix avoids ambiguity in some strange
 
266
  //situations.
 
267
  sigc::visit_each(_A_action, _A_target.functor_);
265
268
}
266
269
 
267
270