diff --git a/doc/current_function.adoc b/doc/current_function.adoc index c9b549b..9c96170 100644 --- a/doc/current_function.adoc +++ b/doc/current_function.adoc @@ -21,5 +21,9 @@ the (fully qualified, if possible) name of the enclosing function. If there is no enclosing function, the behavior is unspecified. Some compilers do not provide a way to obtain the name of the current enclosing -function. On such compilers, `BOOST_CURRENT_FUNCTION` expands to -`"(unknown)"`. +function. On such compilers, or when the macro `BOOST_DISABLE_CURRENT_FUNCTION` +is defined, `BOOST_CURRENT_FUNCTION` expands to `"(unknown)"`. + +`BOOST_DISABLE_CURRENT_FUNCTION` addresses a use case in which the programmer +wishes to eliminate the string literals produced by `BOOST_CURRENT_FUNCTION` from +the final executable for security reasons.