summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKjell Ahlstedt <kjellahlstedt@gmail.com>2019-08-29 17:07:44 +0200
committerKjell Ahlstedt <kjellahlstedt@gmail.com>2019-08-29 17:07:44 +0200
commit4a691a1ecfd9b255807eabfb2f07da720f364217 (patch)
tree310f6de7352738770bb12c8345b277772528c766
parenta486793ce877d990d4000298f83e7712fedf68b9 (diff)
downloadsigc++-4a691a1ecfd9b255807eabfb2f07da720f364217.tar.gz
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.
-rw-r--r--sigc++/adaptors/bind.h2
-rw-r--r--sigc++/adaptors/track_obj.h1
2 files changed, 0 insertions, 3 deletions
diff --git a/sigc++/adaptors/bind.h b/sigc++/adaptors/bind.h
index bd19b32..7088c9f 100644
--- a/sigc++/adaptors/bind.h
+++ b/sigc++/adaptors/bind.h
@@ -28,13 +28,11 @@
#include <sigc++/tuple-utils/tuple_transform_each.h>
#include <functional>
-
namespace sigc
{
/** @defgroup bind bind(), bind_return()
* sigc::bind() alters an arbitrary functor by fixing arguments to certain values.
- * Up to 7 arguments can be bound at a time.
* For single argument binding, overloads of sigc::bind() are provided that let you
* specify the zero-based position of the argument to fix with the first template parameter.
* (A value of @p -1 fixes the last argument so sigc::bind<-1>() gives the same result as
diff --git a/sigc++/adaptors/track_obj.h b/sigc++/adaptors/track_obj.h
index c7e75e5..d894781 100644
--- a/sigc++/adaptors/track_obj.h
+++ b/sigc++/adaptors/track_obj.h
@@ -35,7 +35,6 @@ namespace sigc
*
* The functor returned by sigc::track_obj() is formally an adaptor, but it does
* not alter the signature, return type or behaviour of the supplied functor.
- * Up to 7 objects can be tracked. operator()() can have up to 7 arguments.
*
* @par Example:
* @code