From ebd86ec5583e6b883ef3850523c9dab07d5ae12c Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Fri, 13 Dec 2019 20:25:46 +0200 Subject: [PATCH] Update header name in documentation --- doc/bind/implementation.qbk | 14 +++++++------- doc/bind/troubleshooting.qbk | 4 ++-- doc/html/bind.html | 22 +++++++++++----------- doc/html/mem_fn.html | 2 +- 4 files changed, 21 insertions(+), 21 deletions(-) diff --git a/doc/bind/implementation.qbk b/doc/bind/implementation.qbk index f19023c..b00c8a3 100644 --- a/doc/bind/implementation.qbk +++ b/doc/bind/implementation.qbk @@ -11,7 +11,7 @@ [section Files] -* [@../../../../boost/bind.hpp boost/bind.hpp] (main header) +* [@../../../../boost/bind/bind.hpp boost/bind/bind.hpp] (main header) * [@../../../../boost/bind/bind_cc.hpp boost/bind/bind_cc.hpp] (used by `bind.hpp`, do not include directly) * [@../../../../boost/bind/bind_mf_cc.hpp boost/bind/bind_mf_cc.hpp] (used by `bind.hpp`, do not include directly) * [@../../../../boost/bind/bind_template.hpp boost/bind/bind_template.hpp] (used by `bind.hpp`, do not include directly) @@ -58,22 +58,22 @@ calling convention known as `__stdcall`. Borland VCL components use `__fastcall`. Mac toolbox functions use a `pascal` calling convention. To use `bind` with `__stdcall` functions, `#define` the macro -`BOOST_BIND_ENABLE_STDCALL` before including ``. +`BOOST_BIND_ENABLE_STDCALL` before including ``. To use `bind` with `__stdcall` member functions, `#define` the macro -`BOOST_MEM_FN_ENABLE_STDCALL` before including ``. +`BOOST_MEM_FN_ENABLE_STDCALL` before including ``. To use `bind` with `__fastcall` functions, `#define` the macro -`BOOST_BIND_ENABLE_FASTCALL` before including ``. +`BOOST_BIND_ENABLE_FASTCALL` before including ``. To use `bind` with `__fastcall` member functions, `#define` the macro -`BOOST_MEM_FN_ENABLE_FASTCALL` before including ``. +`BOOST_MEM_FN_ENABLE_FASTCALL` before including ``. To use `bind` with `pascal` functions, `#define` the macro -`BOOST_BIND_ENABLE_PASCAL` before including ``. +`BOOST_BIND_ENABLE_PASCAL` before including ``. To use `bind` with `__cdecl` member functions, `#define` the macro -`BOOST_MEM_FN_ENABLE_CDECL` before including ``. +`BOOST_MEM_FN_ENABLE_CDECL` before including ``. [*It is best to define these macros in the project options, via `-D` on the command line, or as the first line in the translation unit (.cpp file) where diff --git a/doc/bind/troubleshooting.qbk b/doc/bind/troubleshooting.qbk index 4523a6b..54ab17a 100644 --- a/doc/bind/troubleshooting.qbk +++ b/doc/bind/troubleshooting.qbk @@ -181,7 +181,7 @@ and [@http://en.cppreference.com/w/cpp/utility/functional/binary_negate `std::bi The `make_adaptable` function is defined in [@../../../../boost/bind/make_adaptable.hpp ``], which must be included explicitly in -addition to [@../../../../boost/bind.hpp ``]: +addition to [@../../../../boost/bind/bind.hpp ``]: #include @@ -228,7 +228,7 @@ Workaround: remove the `const` qualifier from the argument. [section MSVC specific: `using boost::bind;`] -On MSVC (up to version 7.0), when `boostbind` is brought into scope with an +On MSVC (up to version 7.0), when `boost::bind` is brought into scope with an using declaration: using boost::bind; diff --git a/doc/html/bind.html b/doc/html/bind.html index 97784fb..2a91d00 100644 --- a/doc/html/bind.html +++ b/doc/html/bind.html @@ -916,7 +916,7 @@

The make_adaptable function is defined in <boost/bind/make_adaptable.hpp>, - which must be included explicitly in addition to <boost/bind.hpp>: + which must be included explicitly in addition to <boost/bind/bind.hpp>:

#include <boost/bind/make_adaptable.hpp>
 
@@ -974,7 +974,7 @@
       specific: using boost::bind;
 
 

- On MSVC (up to version 7.0), when boostbind + On MSVC (up to version 7.0), when boost::bind is brought into scope with an using declaration:

using boost::bind;
@@ -1305,8 +1305,8 @@
 
 
  • - boost/bind.hpp (main - header) + boost/bind/bind.hpp + (main header)
  • boost/bind/bind_cc.hpp @@ -1427,29 +1427,29 @@

    To use bind with __stdcall functions, #define the macro BOOST_BIND_ENABLE_STDCALL - before including <boost/bind.hpp>. + before including <boost/bind/bind.hpp>.

    To use bind with __stdcall member functions, #define the macro BOOST_MEM_FN_ENABLE_STDCALL - before including <boost/bind.hpp>. + before including <boost/bind/bind.hpp>.

    To use bind with __fastcall functions, #define the macro BOOST_BIND_ENABLE_FASTCALL - before including <boost/bind.hpp>. + before including <boost/bind/bind.hpp>.

    To use bind with __fastcall member functions, #define the macro BOOST_MEM_FN_ENABLE_FASTCALL - before including <boost/bind.hpp>. + before including <boost/bind/bind.hpp>.

    To use bind with pascal functions, #define the macro BOOST_BIND_ENABLE_PASCAL - before including <boost/bind.hpp>. + before including <boost/bind/bind.hpp>.

    To use bind with __cdecl member functions, #define the macro BOOST_MEM_FN_ENABLE_CDECL - before including <boost/bind.hpp>. + before including <boost/bind/bind.hpp>.

    It is best to define these macros in the project options, @@ -1543,7 +1543,7 @@

- +

Last revised: July 07, 2017 at 11:19:28 GMT

Last revised: December 13, 2019 at 18:24:18 GMT


diff --git a/doc/html/mem_fn.html b/doc/html/mem_fn.html index 528bfcf..202f0a4 100644 --- a/doc/html/mem_fn.html +++ b/doc/html/mem_fn.html @@ -543,7 +543,7 @@ - +

Last revised: July 07, 2017 at 11:19:31 GMT

Last revised: December 13, 2019 at 18:24:22 GMT