Skip to content

Commit 4a691a1

Browse files
committed
bind(), track_obj() documentation: Remove obsolete restrictions
The number of objects and arguments are not restricted to max 7 now that variadic templates have replaced the .m4 files in libsigc++-2 that generated 7 copies.
1 parent a486793 commit 4a691a1

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

sigc++/adaptors/bind.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,11 @@
2828
#include <sigc++/tuple-utils/tuple_transform_each.h>
2929
#include <functional>
3030

31-
3231
namespace sigc
3332
{
3433

3534
/** @defgroup bind bind(), bind_return()
3635
* sigc::bind() alters an arbitrary functor by fixing arguments to certain values.
37-
* Up to 7 arguments can be bound at a time.
3836
* For single argument binding, overloads of sigc::bind() are provided that let you
3937
* specify the zero-based position of the argument to fix with the first template parameter.
4038
* (A value of @p -1 fixes the last argument so sigc::bind<-1>() gives the same result as

sigc++/adaptors/track_obj.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ namespace sigc
3535
*
3636
* The functor returned by sigc::track_obj() is formally an adaptor, but it does
3737
* not alter the signature, return type or behaviour of the supplied functor.
38-
* Up to 7 objects can be tracked. operator()() can have up to 7 arguments.
3938
*
4039
* @par Example:
4140
* @code

0 commit comments

Comments
 (0)