diff --git a/doc/html/callable_traits/ref_bind.html b/doc/html/callable_traits/ref_bind.html index 5163954..a1023cb 100644 --- a/doc/html/callable_traits/ref_bind.html +++ b/doc/html/callable_traits/ref_bind.html @@ -35,7 +35,7 @@ callable_traits::bind is not compatible with the Microsoft Visual C++ compiler in Visual Studio (a.k.a. MSVC). Accordingly, the example(s) below will not compile in MSVC. - However, Windows users can still use clang-cl. Refer to the MSVC + However, Visual Studio users can still use Clang-cl. Refer to the MSVC Issues section for more information.

@@ -116,18 +116,19 @@ Notes
+

- Example - 1 -

+ Example + 1 +
/* In this example, the last _1 placeholder in the bind
 expression forces all other _1 slots to accept ScaryMonster,
 because ScaryMonster is the narrowest of all _1 parameters. */
@@ -200,9 +201,9 @@ because ScaryMonster is the narrowest of all _1 parameters. */
 

- Example - 2 -

+ Example + 2 +
#include <cassert>
 #include <type_traits>
 #include <functional>
@@ -253,6 +254,7 @@ because ScaryMonster is the narrowest of all _1 parameters. */
     return 0;
 }
 
+

See