diff --git a/doc/html/BOOST_LOCAL_FUNCTION.html b/doc/html/BOOST_LOCAL_FUNCTION.html index cdfa932..aabdaca 100644 --- a/doc/html/BOOST_LOCAL_FUNCTION.html +++ b/doc/html/BOOST_LOCAL_FUNCTION.html @@ -33,7 +33,7 @@ BOOST_LOCAL_FUNCTION(declarations)
This macro must be used within a declarative context, it must follow the local function result type, it must be followed by the local function body code, and then by the BOOST_LOCAL_FUNCTION_NAME macro (see the Tutorial and Advanced Topics sections):
{ // Some declarative context. ... diff --git a/doc/html/BOOST_LOCAL_FUNCTION_CONFIG_ARITY_MAX.html b/doc/html/BOOST_LOCAL_FUNCTION_CONFIG_ARITY_MAX.html index 7b28dcb..7f49e77 100644 --- a/doc/html/BOOST_LOCAL_FUNCTION_CONFIG_ARITY_MAX.html +++ b/doc/html/BOOST_LOCAL_FUNCTION_CONFIG_ARITY_MAX.html @@ -33,7 +33,7 @@ BOOST_LOCAL_FUNCTION_CONFIG_ARITY_MAX
If programmers leave this configuration macro undefined, its default value is 5 (increasing this number might increase compilation time). When defined by programmers, this macro must be a non-negative integer number.
Note: This macro specifies the maximum number of local function parameters excluding bound variables (which are instead specified by BOOST_LOCAL_FUNCTION_CONFIG_BIND_MAX).
See: Tutorial section, Getting Started section, BOOST_LOCAL_FUNCTION_CONFIG_BIND_MAX.
If programmers leave this configuration macro undefined, its default value is 10 (increasing this number might increase compilation time). When defined by programmers, this macro must be a non-negative integer number.
Note: This macro specifies the maximum number of bound variables excluding local function parameters (which are instead specified by BOOST_LOCAL_FUNCTION_CONFIG_ARITY_MAX).
See: Tutorial section, Getting Started section, BOOST_LOCAL_FUNCTION_CONFIG_ARITY_MAX.
This macro must follow the local function body code block { ... }:
{ // Some declarative context. ... diff --git a/doc/html/BOOST_LOCAL_FUNCTION_TPL.html b/doc/html/BOOST_LOCAL_FUNCTION_TPL.html index 9ec4cd0..24e2056 100644 --- a/doc/html/BOOST_LOCAL_FUNCTION_TPL.html +++ b/doc/html/BOOST_LOCAL_FUNCTION_TPL.html @@ -33,7 +33,7 @@ BOOST_LOCAL_FUNCTION_TPL(declarations)
This macro must be used instead of BOOST_LOCAL_FUNCTION when declaring a local function within a template. A part from that, this macro has the exact same syntax as BOOST_LOCAL_FUNCTION (see BOOST_LOCAL_FUNCTION for more information):
{ // Some declarative context with a template. ... diff --git a/doc/html/BOOST_LOCAL_FUNCTION_TYPEOF.html b/doc/html/BOOST_LOCAL_FUNCTION_TYPEOF.html index 1c413a3..adb7675 100644 --- a/doc/html/BOOST_LOCAL_FUNCTION_TYPEOF.html +++ b/doc/html/BOOST_LOCAL_FUNCTION_TYPEOF.html @@ -33,7 +33,7 @@ BOOST_LOCAL_FUNCTION_TYPEOF(bound_variable_name)
This macro can be used within the local functions body to refer to the bound variable types so to declare local variables, check concepts (using Boost.ConceptCheck), etc (see the Advanced Topics section). This way the local function can be programmed entirely without explicitly specifying the bound variable types thus facilitating maintenance (e.g., if the type of a bound variable changes in the enclosing scope, the local function code does not have to change).
Parameters:
Last revised: February 17, 2012 at 19:11:44 GMT |
+Last revised: February 17, 2012 at 22:11:08 GMT |