From 0baf10bfc64ebf4a37bac7576e4bbe32f587fd7d Mon Sep 17 00:00:00 2001 From: Edward Diener Date: Fri, 7 Nov 2014 16:35:36 -0500 Subject: [PATCH] Updated docs to refer to config.hpp rather than variadics.hpp. --- doc/headers.html | 2 +- doc/headers/config/variadics.html | 14 +++++++------- doc/ref/variadics.html | 6 +++--- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/doc/headers.html b/doc/headers.html index e96b25e..58f33db 100644 --- a/doc/headers.html +++ b/doc/headers.html @@ -54,7 +54,7 @@
  • not_equal.hpp
  • config/
  • limits.hpp
  • -
  • variadics.hpp
  • +
  • config.hpp
  • control.hpp
  • control/
  • deduce_d.hpp
  • diff --git a/doc/headers/config/variadics.html b/doc/headers/config/variadics.html index c992685..334f053 100644 --- a/doc/headers/config/variadics.html +++ b/doc/headers/config/variadics.html @@ -1,19 +1,19 @@ - config/variadics.hpp + config/config.hpp
    - The config/variadics.hpp -header defines a macro for determining variadic macro support. The file -is automatically included when needed internally. The end-user can -include it also in order to use the macro.
    + The config/config.hpp +header defines internal configuration macros as well as a macro for determining variadic macro support. The file +is automatically included whenever any Boost PP macros are used. The end-user can manually +include it in order to use the BOOST_PP_VARIADICS macro, but normally should never have to do so.

    Usage

    - #include <boost/preprocessor/config/variadics.hpp> + #include <boost/preprocessor/config/config.hpp>

    Contents @@ -21,7 +21,7 @@ include it also in order to use the macro.
    -
    © Copyright Edward Diener 2011 +
    © Copyright Edward Diener 2011,2014

    Distributed under the Boost Software License, Version 1.0. (See diff --git a/doc/ref/variadics.html b/doc/ref/variadics.html index 3e40c1b..a08e8c5 100644 --- a/doc/ref/variadics.html +++ b/doc/ref/variadics.html @@ -13,14 +13,14 @@ code to check for the presence of variadic macro support. It can be used by the end-user for the same purpose. The macro equals 1 if variadic macros are supported and 0 if they are not.

    Requirements -
    Header:  <boost/preprocessor/config/variadics.hpp> +

    Sample Code

    -
    #include <boost/preprocessor/config/variadics.hpp>

    #if BOOST_PP_VARIADICS
    #define SOME_MACRO(...) // replacement list
    #else
    #define SOME_MACRO(param1,param2) // replacement list
    #endif
    +
    #include <boost/preprocessor/config/config.hpp>

    #if BOOST_PP_VARIADICS
    #define SOME_MACRO(...) // replacement list
    #else
    #define SOME_MACRO(param1,param2) // replacement list
    #endif

    -
    © Copyright Edward Diener 2011
    +
    © Copyright Edward Diener 2011,2014

    Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt