diff --git a/doc/html/boost_typetraits/reference/is_union.html b/doc/html/boost_typetraits/reference/is_union.html index f255b36..f8b2d8e 100644 --- a/doc/html/boost_typetraits/reference/is_union.html +++ b/doc/html/boost_typetraits/reference/is_union.html @@ -62,20 +62,24 @@
Examples:
+
+ Given union my_union
+ {};
then:
+
-
is_union<void>
+is_union<my_union>
inherits fromtrue_type
.
-
is_union<const void>::type
+is_union<const my_union>::type
is the typetrue_type
.
-
is_union<void>::value
is an integral constant expression +is_union<my_union>::value
is an integral constant expression that evaluates to true.
-
is_union<void*>::value
is an integral constant expression +is_union<my_union*>::value
is an integral constant expression that evaluates to false.
diff --git a/doc/html/index.html b/doc/html/index.html index 4668253..b66fff8 100644 --- a/doc/html/index.html +++ b/doc/html/index.html @@ -30,7 +30,7 @@ Marcus, Itay Maman, John Maddock, Alexander Nasonov, Thorsten Ottosen, Robert Ramey and Jeremy Siek
Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
diff --git a/doc/html/index/s11.html b/doc/html/index/s11.html index e8737a2..ecde8ba 100644 --- a/doc/html/index/s11.html +++ b/doc/html/index/s11.html @@ -24,7 +24,7 @@