diff --git a/doc/has_bit_and.qbk b/doc/has_bit_and.qbk index 8aa5782..1635fe2 100644 --- a/doc/has_bit_and.qbk +++ b/doc/has_bit_and.qbk @@ -44,6 +44,10 @@ __examples [*See also:] [link boost_typetraits.category.value_traits.operators Operator Type Traits] +[*Limitation:] + +* Requires a compiler with working SFINAE. + [*Known issues:] * This trait cannot detect whether binary `operator&` is public or not: diff --git a/doc/has_bit_and_assign.qbk b/doc/has_bit_and_assign.qbk index 59ff1e9..90d812e 100644 --- a/doc/has_bit_and_assign.qbk +++ b/doc/has_bit_and_assign.qbk @@ -44,6 +44,10 @@ __examples [*See also:] [link boost_typetraits.category.value_traits.operators Operator Type Traits] +[*Limitation:] + +* Requires a compiler with working SFINAE. + [*Known issues:] * This trait cannot detect whether binary `operator&=` is public or not: diff --git a/doc/has_bit_or.qbk b/doc/has_bit_or.qbk index d701cca..1ff6deb 100644 --- a/doc/has_bit_or.qbk +++ b/doc/has_bit_or.qbk @@ -44,6 +44,10 @@ __examples [*See also:] [link boost_typetraits.category.value_traits.operators Operator Type Traits] +[*Limitation:] + +* Requires a compiler with working SFINAE. + [*Known issues:] * This trait cannot detect whether binary `operator|` is public or not: diff --git a/doc/has_bit_or_assign.qbk b/doc/has_bit_or_assign.qbk index bde98da..d434a77 100644 --- a/doc/has_bit_or_assign.qbk +++ b/doc/has_bit_or_assign.qbk @@ -44,6 +44,10 @@ __examples [*See also:] [link boost_typetraits.category.value_traits.operators Operator Type Traits] +[*Limitation:] + +* Requires a compiler with working SFINAE. + [*Known issues:] * This trait cannot detect whether binary `operator|=` is public or not: diff --git a/doc/has_bit_xor.qbk b/doc/has_bit_xor.qbk index e47af4c..40c2d05 100644 --- a/doc/has_bit_xor.qbk +++ b/doc/has_bit_xor.qbk @@ -44,6 +44,10 @@ __examples [*See also:] [link boost_typetraits.category.value_traits.operators Operator Type Traits] +[*Limitation:] + +* Requires a compiler with working SFINAE. + [*Known issues:] * This trait cannot detect whether binary `operator^` is public or not: diff --git a/doc/has_bit_xor_assign.qbk b/doc/has_bit_xor_assign.qbk index ea4f0c9..49b2ce8 100644 --- a/doc/has_bit_xor_assign.qbk +++ b/doc/has_bit_xor_assign.qbk @@ -44,6 +44,10 @@ __examples [*See also:] [link boost_typetraits.category.value_traits.operators Operator Type Traits] +[*Limitation:] + +* Requires a compiler with working SFINAE. + [*Known issues:] * This trait cannot detect whether binary `operator^=` is public or not: diff --git a/doc/has_complement.qbk b/doc/has_complement.qbk index e43aec6..3013668 100644 --- a/doc/has_complement.qbk +++ b/doc/has_complement.qbk @@ -46,6 +46,10 @@ __examples [*See also:] [link boost_typetraits.category.value_traits.operators Operator Type Traits] +[*Limitation:] + +* Requires a compiler with working SFINAE. + [*Known issues:] * This trait cannot detect whether prefix `operator~` is public or not: diff --git a/doc/has_dereference.qbk b/doc/has_dereference.qbk index 30b20ac..3ce558d 100644 --- a/doc/has_dereference.qbk +++ b/doc/has_dereference.qbk @@ -49,6 +49,10 @@ __examples [*See also:] [link boost_typetraits.category.value_traits.operators Operator Type Traits] +[*Limitation:] + +* Requires a compiler with working SFINAE. + [*Known issues:] * This trait cannot detect whether prefix `operator*` is public or not: diff --git a/doc/has_divides.qbk b/doc/has_divides.qbk index 0d723d6..af60be6 100644 --- a/doc/has_divides.qbk +++ b/doc/has_divides.qbk @@ -46,6 +46,10 @@ __examples [*See also:] [link boost_typetraits.category.value_traits.operators Operator Type Traits] +[*Limitation:] + +* Requires a compiler with working SFINAE. + [*Known issues:] * This trait cannot detect whether binary `operator/` is public or not: diff --git a/doc/has_divides_assign.qbk b/doc/has_divides_assign.qbk index 62ad479..2bec5da 100644 --- a/doc/has_divides_assign.qbk +++ b/doc/has_divides_assign.qbk @@ -46,6 +46,10 @@ __examples [*See also:] [link boost_typetraits.category.value_traits.operators Operator Type Traits] +[*Limitation:] + +* Requires a compiler with working SFINAE. + [*Known issues:] * This trait cannot detect whether binary `operator/=` is public or not: diff --git a/doc/has_equal_to.qbk b/doc/has_equal_to.qbk index 4b4d73e..fbac606 100644 --- a/doc/has_equal_to.qbk +++ b/doc/has_equal_to.qbk @@ -46,6 +46,10 @@ __examples [*See also:] [link boost_typetraits.category.value_traits.operators Operator Type Traits] +[*Limitation:] + +* Requires a compiler with working SFINAE. + [*Known issues:] * This trait cannot detect whether binary `operator==` is public or not: diff --git a/doc/has_greater.qbk b/doc/has_greater.qbk index d0cd93e..c49b239 100644 --- a/doc/has_greater.qbk +++ b/doc/has_greater.qbk @@ -46,6 +46,10 @@ __examples [*See also:] [link boost_typetraits.category.value_traits.operators Operator Type Traits] +[*Limitation:] + +* Requires a compiler with working SFINAE. + [*Known issues:] * This trait cannot detect whether binary `operator>` is public or not: diff --git a/doc/has_greater_equal.qbk b/doc/has_greater_equal.qbk index 14c5a2a..149d67c 100644 --- a/doc/has_greater_equal.qbk +++ b/doc/has_greater_equal.qbk @@ -46,6 +46,10 @@ __examples [*See also:] [link boost_typetraits.category.value_traits.operators Operator Type Traits] +[*Limitation:] + +* Requires a compiler with working SFINAE. + [*Known issues:] * This trait cannot detect whether binary `operator>=` is public or not: diff --git a/doc/has_left_shift.qbk b/doc/has_left_shift.qbk index c1af904..a95f148 100644 --- a/doc/has_left_shift.qbk +++ b/doc/has_left_shift.qbk @@ -47,6 +47,10 @@ __examples [*See also:] [link boost_typetraits.category.value_traits.operators Operator Type Traits] +[*Limitation:] + +* Requires a compiler with working SFINAE. + [*Known issues:] * This trait cannot detect whether binary `operator<<` is public or not: diff --git a/doc/has_left_shift_assign.qbk b/doc/has_left_shift_assign.qbk index 63d0e5b..106272f 100644 --- a/doc/has_left_shift_assign.qbk +++ b/doc/has_left_shift_assign.qbk @@ -44,6 +44,10 @@ __examples [*See also:] [link boost_typetraits.category.value_traits.operators Operator Type Traits] +[*Limitation:] + +* Requires a compiler with working SFINAE. + [*Known issues:] * This trait cannot detect whether binary `operator<<=` is public or not: diff --git a/doc/has_less.qbk b/doc/has_less.qbk index 1956238..5d1c19f 100644 --- a/doc/has_less.qbk +++ b/doc/has_less.qbk @@ -46,6 +46,10 @@ __examples [*See also:] [link boost_typetraits.category.value_traits.operators Operator Type Traits] +[*Limitation:] + +* Requires a compiler with working SFINAE. + [*Known issues:] * This trait cannot detect whether binary `operator<` is public or not: diff --git a/doc/has_less_equal.qbk b/doc/has_less_equal.qbk index dc3fd49..3130192 100644 --- a/doc/has_less_equal.qbk +++ b/doc/has_less_equal.qbk @@ -46,6 +46,10 @@ __examples [*See also:] [link boost_typetraits.category.value_traits.operators Operator Type Traits] +[*Limitation:] + +* Requires a compiler with working SFINAE. + [*Known issues:] * This trait cannot detect whether binary `operator<=` is public or not: diff --git a/doc/has_logical_and.qbk b/doc/has_logical_and.qbk index c3d22ff..d1dc6b2 100644 --- a/doc/has_logical_and.qbk +++ b/doc/has_logical_and.qbk @@ -45,6 +45,10 @@ __examples [*See also:] [link boost_typetraits.category.value_traits.operators Operator Type Traits] +[*Limitation:] + +* Requires a compiler with working SFINAE. + [*Known issues:] * This trait cannot detect whether binary `operator&&` is public or not: diff --git a/doc/has_logical_not.qbk b/doc/has_logical_not.qbk index 30c41ff..c969f18 100644 --- a/doc/has_logical_not.qbk +++ b/doc/has_logical_not.qbk @@ -45,6 +45,10 @@ __examples [*See also:] [link boost_typetraits.category.value_traits.operators Operator Type Traits] +[*Limitation:] + +* Requires a compiler with working SFINAE. + [*Known issues:] * This trait cannot detect whether prefix `operator!` is public or not: diff --git a/doc/has_logical_or.qbk b/doc/has_logical_or.qbk index 943dfa5..67f6031 100644 --- a/doc/has_logical_or.qbk +++ b/doc/has_logical_or.qbk @@ -45,6 +45,10 @@ __examples [*See also:] [link boost_typetraits.category.value_traits.operators Operator Type Traits] +[*Limitation:] + +* Requires a compiler with working SFINAE. + [*Known issues:] * This trait cannot detect whether binary `operator||` is public or not: diff --git a/doc/has_minus.qbk b/doc/has_minus.qbk index b97cd32..7139272 100644 --- a/doc/has_minus.qbk +++ b/doc/has_minus.qbk @@ -46,6 +46,10 @@ __examples [*See also:] [link boost_typetraits.category.value_traits.operators Operator Type Traits] +[*Limitation:] + +* Requires a compiler with working SFINAE. + [*Known issues:] * This trait cannot detect whether binary `operator-` is public or not: diff --git a/doc/has_minus_assign.qbk b/doc/has_minus_assign.qbk index 90f0190..1d106bd 100644 --- a/doc/has_minus_assign.qbk +++ b/doc/has_minus_assign.qbk @@ -46,6 +46,10 @@ __examples [*See also:] [link boost_typetraits.category.value_traits.operators Operator Type Traits] +[*Limitation:] + +* Requires a compiler with working SFINAE. + [*Known issues:] * This trait cannot detect whether binary `operator-=` is public or not: diff --git a/doc/has_modulus.qbk b/doc/has_modulus.qbk index 339be1a..ae79258 100644 --- a/doc/has_modulus.qbk +++ b/doc/has_modulus.qbk @@ -44,6 +44,10 @@ __examples [*See also:] [link boost_typetraits.category.value_traits.operators Operator Type Traits] +[*Limitation:] + +* Requires a compiler with working SFINAE. + [*Known issues:] * This trait cannot detect whether binary `operator%` is public or not: diff --git a/doc/has_modulus_assign.qbk b/doc/has_modulus_assign.qbk index c0a5a29..68b8479 100644 --- a/doc/has_modulus_assign.qbk +++ b/doc/has_modulus_assign.qbk @@ -44,6 +44,10 @@ __examples [*See also:] [link boost_typetraits.category.value_traits.operators Operator Type Traits] +[*Limitation:] + +* Requires a compiler with working SFINAE. + [*Known issues:] * This trait cannot detect whether binary `operator%=` is public or not: diff --git a/doc/has_multiplies.qbk b/doc/has_multiplies.qbk index 5f0599a..6f0d491 100644 --- a/doc/has_multiplies.qbk +++ b/doc/has_multiplies.qbk @@ -46,6 +46,10 @@ __examples [*See also:] [link boost_typetraits.category.value_traits.operators Operator Type Traits] +[*Limitation:] + +* Requires a compiler with working SFINAE. + [*Known issues:] * This trait cannot detect whether binary `operator*` is public or not: diff --git a/doc/has_multiplies_assign.qbk b/doc/has_multiplies_assign.qbk index f64fb1e..3932d46 100644 --- a/doc/has_multiplies_assign.qbk +++ b/doc/has_multiplies_assign.qbk @@ -46,6 +46,10 @@ __examples [*See also:] [link boost_typetraits.category.value_traits.operators Operator Type Traits] +[*Limitation:] + +* Requires a compiler with working SFINAE. + [*Known issues:] * This trait cannot detect whether binary `operator*=` is public or not: diff --git a/doc/has_negate.qbk b/doc/has_negate.qbk index 9d1dc94..d968210 100644 --- a/doc/has_negate.qbk +++ b/doc/has_negate.qbk @@ -45,6 +45,10 @@ __examples [*See also:] [link boost_typetraits.category.value_traits.operators Operator Type Traits] +[*Limitation:] + +* Requires a compiler with working SFINAE. + [*Known issues:] * This trait cannot detect whether prefix `operator-` is public or not: diff --git a/doc/has_not_equal_to.qbk b/doc/has_not_equal_to.qbk index bdcdcea..05231db 100644 --- a/doc/has_not_equal_to.qbk +++ b/doc/has_not_equal_to.qbk @@ -46,6 +46,10 @@ __examples [*See also:] [link boost_typetraits.category.value_traits.operators Operator Type Traits] +[*Limitation:] + +* Requires a compiler with working SFINAE. + [*Known issues:] * This trait cannot detect whether binary `operator!=` is public or not: diff --git a/doc/has_plus.qbk b/doc/has_plus.qbk index 4a48be4..c5cfc18 100644 --- a/doc/has_plus.qbk +++ b/doc/has_plus.qbk @@ -46,6 +46,10 @@ __examples [*See also:] [link boost_typetraits.category.value_traits.operators Operator Type Traits] +[*Limitation:] + +* Requires a compiler with working SFINAE. + [*Known issues:] * This trait cannot detect whether binary `operator+` is public or not: diff --git a/doc/has_plus_assign.qbk b/doc/has_plus_assign.qbk index 2e4091e..e6cac56 100644 --- a/doc/has_plus_assign.qbk +++ b/doc/has_plus_assign.qbk @@ -46,6 +46,10 @@ __examples [*See also:] [link boost_typetraits.category.value_traits.operators Operator Type Traits] +[*Limitation:] + +* Requires a compiler with working SFINAE. + [*Known issues:] * This trait cannot detect whether binary `operator+=` is public or not: diff --git a/doc/has_post_decrement.qbk b/doc/has_post_decrement.qbk index 22c785e..1edfdbb 100644 --- a/doc/has_post_decrement.qbk +++ b/doc/has_post_decrement.qbk @@ -47,6 +47,10 @@ __examples [*See also:] [link boost_typetraits.category.value_traits.operators Operator Type Traits] +[*Limitation:] + +* Requires a compiler with working SFINAE. + [*Known issues:] * This trait cannot detect whether postfix `operator--` is public or not: diff --git a/doc/has_post_increment.qbk b/doc/has_post_increment.qbk index 0d17aec..8e3fba6 100644 --- a/doc/has_post_increment.qbk +++ b/doc/has_post_increment.qbk @@ -47,6 +47,10 @@ __examples [*See also:] [link boost_typetraits.category.value_traits.operators Operator Type Traits] +[*Limitation:] + +* Requires a compiler with working SFINAE. + [*Known issues:] * This trait cannot detect whether postfix `operator++` is public or not: diff --git a/doc/has_pre_decrement.qbk b/doc/has_pre_decrement.qbk index 8e7c4cd..94e61ab 100644 --- a/doc/has_pre_decrement.qbk +++ b/doc/has_pre_decrement.qbk @@ -47,6 +47,10 @@ __examples [*See also:] [link boost_typetraits.category.value_traits.operators Operator Type Traits] +[*Limitation:] + +* Requires a compiler with working SFINAE. + [*Known issues:] * This trait cannot detect whether prefix `operator--` is public or not: diff --git a/doc/has_pre_increment.qbk b/doc/has_pre_increment.qbk index e3cb616..fcd9b6e 100644 --- a/doc/has_pre_increment.qbk +++ b/doc/has_pre_increment.qbk @@ -47,6 +47,10 @@ __examples [*See also:] [link boost_typetraits.category.value_traits.operators Operator Type Traits] +[*Limitation:] + +* Requires a compiler with working SFINAE. + [*Known issues:] * This trait cannot detect whether prefix `operator++` is public or not: diff --git a/doc/has_right_shift.qbk b/doc/has_right_shift.qbk index 5dfa90b..8a7f9fb 100644 --- a/doc/has_right_shift.qbk +++ b/doc/has_right_shift.qbk @@ -47,6 +47,10 @@ __examples [*See also:] [link boost_typetraits.category.value_traits.operators Operator Type Traits] +[*Limitation:] + +* Requires a compiler with working SFINAE. + [*Known issues:] * This trait cannot detect whether binary `operator>>` is public or not: diff --git a/doc/has_right_shift_assign.qbk b/doc/has_right_shift_assign.qbk index 5cfeb09..906e365 100644 --- a/doc/has_right_shift_assign.qbk +++ b/doc/has_right_shift_assign.qbk @@ -44,6 +44,10 @@ __examples [*See also:] [link boost_typetraits.category.value_traits.operators Operator Type Traits] +[*Limitation:] + +* Requires a compiler with working SFINAE. + [*Known issues:] * This trait cannot detect whether binary `operator>>=` is public or not: diff --git a/doc/has_unary_minus.qbk b/doc/has_unary_minus.qbk index 0e6112a..913c32f 100644 --- a/doc/has_unary_minus.qbk +++ b/doc/has_unary_minus.qbk @@ -45,6 +45,10 @@ __examples [*See also:] [link boost_typetraits.category.value_traits.operators Operator Type Traits] +[*Limitation:] + +* Requires a compiler with working SFINAE. + [*Known issues:] * This trait cannot detect whether prefix `operator-` is public or not: diff --git a/doc/has_unary_plus.qbk b/doc/has_unary_plus.qbk index 1f542c9..de8474e 100644 --- a/doc/has_unary_plus.qbk +++ b/doc/has_unary_plus.qbk @@ -45,6 +45,10 @@ __examples [*See also:] [link boost_typetraits.category.value_traits.operators Operator Type Traits] +[*Limitation:] + +* Requires a compiler with working SFINAE. + [*Known issues:] * This trait cannot detect whether prefix `operator+` is public or not: diff --git a/doc/html/boost_typetraits/background.html b/doc/html/boost_typetraits/background.html index 9358301..2be4fa6 100644 --- a/doc/html/boost_typetraits/background.html +++ b/doc/html/boost_typetraits/background.html @@ -3,7 +3,7 @@
+
+ Limitation: +
+Known issues:
diff --git a/doc/html/boost_typetraits/reference/has_bit_and_assign.html b/doc/html/boost_typetraits/reference/has_bit_and_assign.html index 0b3af1a..293e84f 100644 --- a/doc/html/boost_typetraits/reference/has_bit_and_assign.html +++ b/doc/html/boost_typetraits/reference/has_bit_and_assign.html @@ -3,7 +3,7 @@+ Limitation: +
+Known issues:
diff --git a/doc/html/boost_typetraits/reference/has_bit_or.html b/doc/html/boost_typetraits/reference/has_bit_or.html index 8bda1c8..1d3f475 100644 --- a/doc/html/boost_typetraits/reference/has_bit_or.html +++ b/doc/html/boost_typetraits/reference/has_bit_or.html @@ -3,7 +3,7 @@+ Limitation: +
+Known issues:
diff --git a/doc/html/boost_typetraits/reference/has_bit_or_assign.html b/doc/html/boost_typetraits/reference/has_bit_or_assign.html index 285b2c0..c637654 100644 --- a/doc/html/boost_typetraits/reference/has_bit_or_assign.html +++ b/doc/html/boost_typetraits/reference/has_bit_or_assign.html @@ -3,7 +3,7 @@+ Limitation: +
+Known issues:
diff --git a/doc/html/boost_typetraits/reference/has_bit_xor.html b/doc/html/boost_typetraits/reference/has_bit_xor.html index 72b4d6a..8f9af84 100644 --- a/doc/html/boost_typetraits/reference/has_bit_xor.html +++ b/doc/html/boost_typetraits/reference/has_bit_xor.html @@ -3,7 +3,7 @@+ Limitation: +
+Known issues:
diff --git a/doc/html/boost_typetraits/reference/has_bit_xor_assign.html b/doc/html/boost_typetraits/reference/has_bit_xor_assign.html index 93de260..59f8517 100644 --- a/doc/html/boost_typetraits/reference/has_bit_xor_assign.html +++ b/doc/html/boost_typetraits/reference/has_bit_xor_assign.html @@ -3,7 +3,7 @@+ Limitation: +
+Known issues:
diff --git a/doc/html/boost_typetraits/reference/has_complement.html b/doc/html/boost_typetraits/reference/has_complement.html index b8a0565..2a0bec2 100644 --- a/doc/html/boost_typetraits/reference/has_complement.html +++ b/doc/html/boost_typetraits/reference/has_complement.html @@ -3,7 +3,7 @@+ Limitation: +
+Known issues:
diff --git a/doc/html/boost_typetraits/reference/has_dereference.html b/doc/html/boost_typetraits/reference/has_dereference.html index b8d3ccb..83f92f0 100644 --- a/doc/html/boost_typetraits/reference/has_dereference.html +++ b/doc/html/boost_typetraits/reference/has_dereference.html @@ -3,7 +3,7 @@+ Limitation: +
+Known issues:
diff --git a/doc/html/boost_typetraits/reference/has_divides.html b/doc/html/boost_typetraits/reference/has_divides.html index fa9d3c4..f6e2bc0 100644 --- a/doc/html/boost_typetraits/reference/has_divides.html +++ b/doc/html/boost_typetraits/reference/has_divides.html @@ -3,7 +3,7 @@+ Limitation: +
+Known issues:
diff --git a/doc/html/boost_typetraits/reference/has_divides_assign.html b/doc/html/boost_typetraits/reference/has_divides_assign.html index 075f4a8..0aeca96 100644 --- a/doc/html/boost_typetraits/reference/has_divides_assign.html +++ b/doc/html/boost_typetraits/reference/has_divides_assign.html @@ -3,7 +3,7 @@+ Limitation: +
+Known issues:
diff --git a/doc/html/boost_typetraits/reference/has_equal_to.html b/doc/html/boost_typetraits/reference/has_equal_to.html index 926c3ca..7887be2 100644 --- a/doc/html/boost_typetraits/reference/has_equal_to.html +++ b/doc/html/boost_typetraits/reference/has_equal_to.html @@ -3,7 +3,7 @@+ Limitation: +
+Known issues:
diff --git a/doc/html/boost_typetraits/reference/has_greater.html b/doc/html/boost_typetraits/reference/has_greater.html index b51c505..aa393a7 100644 --- a/doc/html/boost_typetraits/reference/has_greater.html +++ b/doc/html/boost_typetraits/reference/has_greater.html @@ -3,7 +3,7 @@+ Limitation: +
+Known issues:
diff --git a/doc/html/boost_typetraits/reference/has_greater_equal.html b/doc/html/boost_typetraits/reference/has_greater_equal.html index 463ca04..528d106 100644 --- a/doc/html/boost_typetraits/reference/has_greater_equal.html +++ b/doc/html/boost_typetraits/reference/has_greater_equal.html @@ -3,7 +3,7 @@+ Limitation: +
+Known issues:
diff --git a/doc/html/boost_typetraits/reference/has_left_shift.html b/doc/html/boost_typetraits/reference/has_left_shift.html index 879fbf6..7d3af3e 100644 --- a/doc/html/boost_typetraits/reference/has_left_shift.html +++ b/doc/html/boost_typetraits/reference/has_left_shift.html @@ -3,7 +3,7 @@+ Limitation: +
+Known issues:
diff --git a/doc/html/boost_typetraits/reference/has_left_shift_assign.html b/doc/html/boost_typetraits/reference/has_left_shift_assign.html index efcc753..1ffc9b6 100644 --- a/doc/html/boost_typetraits/reference/has_left_shift_assign.html +++ b/doc/html/boost_typetraits/reference/has_left_shift_assign.html @@ -3,7 +3,7 @@+ Limitation: +
+Known issues:
diff --git a/doc/html/boost_typetraits/reference/has_less.html b/doc/html/boost_typetraits/reference/has_less.html index 035449c..82f631c 100644 --- a/doc/html/boost_typetraits/reference/has_less.html +++ b/doc/html/boost_typetraits/reference/has_less.html @@ -3,7 +3,7 @@+ Limitation: +
+Known issues:
diff --git a/doc/html/boost_typetraits/reference/has_less_equal.html b/doc/html/boost_typetraits/reference/has_less_equal.html index 9862274..33fabaf 100644 --- a/doc/html/boost_typetraits/reference/has_less_equal.html +++ b/doc/html/boost_typetraits/reference/has_less_equal.html @@ -3,7 +3,7 @@+ Limitation: +
+Known issues:
diff --git a/doc/html/boost_typetraits/reference/has_logical_and.html b/doc/html/boost_typetraits/reference/has_logical_and.html index d518cb2..472ce8c 100644 --- a/doc/html/boost_typetraits/reference/has_logical_and.html +++ b/doc/html/boost_typetraits/reference/has_logical_and.html @@ -3,7 +3,7 @@+ Limitation: +
+Known issues:
diff --git a/doc/html/boost_typetraits/reference/has_logical_not.html b/doc/html/boost_typetraits/reference/has_logical_not.html index f7511d4..a726249 100644 --- a/doc/html/boost_typetraits/reference/has_logical_not.html +++ b/doc/html/boost_typetraits/reference/has_logical_not.html @@ -3,7 +3,7 @@+ Limitation: +
+Known issues:
diff --git a/doc/html/boost_typetraits/reference/has_logical_or.html b/doc/html/boost_typetraits/reference/has_logical_or.html index 29da409..52ff07a 100644 --- a/doc/html/boost_typetraits/reference/has_logical_or.html +++ b/doc/html/boost_typetraits/reference/has_logical_or.html @@ -3,7 +3,7 @@+ Limitation: +
+Known issues:
diff --git a/doc/html/boost_typetraits/reference/has_minus.html b/doc/html/boost_typetraits/reference/has_minus.html index 7741b79..1f3e725 100644 --- a/doc/html/boost_typetraits/reference/has_minus.html +++ b/doc/html/boost_typetraits/reference/has_minus.html @@ -3,7 +3,7 @@+ Limitation: +
+Known issues:
diff --git a/doc/html/boost_typetraits/reference/has_minus_assign.html b/doc/html/boost_typetraits/reference/has_minus_assign.html index b6af7e1..655962f 100644 --- a/doc/html/boost_typetraits/reference/has_minus_assign.html +++ b/doc/html/boost_typetraits/reference/has_minus_assign.html @@ -3,7 +3,7 @@+ Limitation: +
+Known issues:
diff --git a/doc/html/boost_typetraits/reference/has_modulus.html b/doc/html/boost_typetraits/reference/has_modulus.html index 0ed1e6a..4a442fa 100644 --- a/doc/html/boost_typetraits/reference/has_modulus.html +++ b/doc/html/boost_typetraits/reference/has_modulus.html @@ -3,7 +3,7 @@+ Limitation: +
+Known issues:
diff --git a/doc/html/boost_typetraits/reference/has_modulus_assign.html b/doc/html/boost_typetraits/reference/has_modulus_assign.html index 11e1f43..76b3ddc 100644 --- a/doc/html/boost_typetraits/reference/has_modulus_assign.html +++ b/doc/html/boost_typetraits/reference/has_modulus_assign.html @@ -3,7 +3,7 @@+ Limitation: +
+Known issues:
diff --git a/doc/html/boost_typetraits/reference/has_multiplies.html b/doc/html/boost_typetraits/reference/has_multiplies.html index e11a011..0a69ef9 100644 --- a/doc/html/boost_typetraits/reference/has_multiplies.html +++ b/doc/html/boost_typetraits/reference/has_multiplies.html @@ -3,7 +3,7 @@+ Limitation: +
+Known issues:
diff --git a/doc/html/boost_typetraits/reference/has_multiplies_assign.html b/doc/html/boost_typetraits/reference/has_multiplies_assign.html index 0ac6dc6..1f82baf 100644 --- a/doc/html/boost_typetraits/reference/has_multiplies_assign.html +++ b/doc/html/boost_typetraits/reference/has_multiplies_assign.html @@ -3,7 +3,7 @@+ Limitation: +
+Known issues:
diff --git a/doc/html/boost_typetraits/reference/has_negate.html b/doc/html/boost_typetraits/reference/has_negate.html index 6ecbf30..614896d 100644 --- a/doc/html/boost_typetraits/reference/has_negate.html +++ b/doc/html/boost_typetraits/reference/has_negate.html @@ -3,7 +3,7 @@+ Limitation: +
+Known issues:
diff --git a/doc/html/boost_typetraits/reference/has_new_operator.html b/doc/html/boost_typetraits/reference/has_new_operator.html index b4b4b37..fbf0939 100644 --- a/doc/html/boost_typetraits/reference/has_new_operator.html +++ b/doc/html/boost_typetraits/reference/has_new_operator.html @@ -3,7 +3,7 @@+ Limitation: +
+Known issues:
diff --git a/doc/html/boost_typetraits/reference/has_nothrow_assign.html b/doc/html/boost_typetraits/reference/has_nothrow_assign.html index db31b3b..1d00206 100644 --- a/doc/html/boost_typetraits/reference/has_nothrow_assign.html +++ b/doc/html/boost_typetraits/reference/has_nothrow_assign.html @@ -3,7 +3,7 @@+ Limitation: +
+Known issues:
diff --git a/doc/html/boost_typetraits/reference/has_plus_assign.html b/doc/html/boost_typetraits/reference/has_plus_assign.html index 213a219..d057b9e 100644 --- a/doc/html/boost_typetraits/reference/has_plus_assign.html +++ b/doc/html/boost_typetraits/reference/has_plus_assign.html @@ -3,7 +3,7 @@+ Limitation: +
+Known issues:
diff --git a/doc/html/boost_typetraits/reference/has_post_decrement.html b/doc/html/boost_typetraits/reference/has_post_decrement.html index aeca8be..c96b668 100644 --- a/doc/html/boost_typetraits/reference/has_post_decrement.html +++ b/doc/html/boost_typetraits/reference/has_post_decrement.html @@ -3,7 +3,7 @@+ Limitation: +
+Known issues:
diff --git a/doc/html/boost_typetraits/reference/has_post_increment.html b/doc/html/boost_typetraits/reference/has_post_increment.html index d4eb606..90fb0fa 100644 --- a/doc/html/boost_typetraits/reference/has_post_increment.html +++ b/doc/html/boost_typetraits/reference/has_post_increment.html @@ -3,7 +3,7 @@+ Limitation: +
+Known issues:
diff --git a/doc/html/boost_typetraits/reference/has_pre_decrement.html b/doc/html/boost_typetraits/reference/has_pre_decrement.html index 608f378..ac11a78 100644 --- a/doc/html/boost_typetraits/reference/has_pre_decrement.html +++ b/doc/html/boost_typetraits/reference/has_pre_decrement.html @@ -3,7 +3,7 @@+ Limitation: +
+Known issues:
diff --git a/doc/html/boost_typetraits/reference/has_pre_increment.html b/doc/html/boost_typetraits/reference/has_pre_increment.html index 0951fab..b15494f 100644 --- a/doc/html/boost_typetraits/reference/has_pre_increment.html +++ b/doc/html/boost_typetraits/reference/has_pre_increment.html @@ -3,7 +3,7 @@+ Limitation: +
+Known issues:
diff --git a/doc/html/boost_typetraits/reference/has_right_shift.html b/doc/html/boost_typetraits/reference/has_right_shift.html index 87bfdb1..225c35d 100644 --- a/doc/html/boost_typetraits/reference/has_right_shift.html +++ b/doc/html/boost_typetraits/reference/has_right_shift.html @@ -3,7 +3,7 @@+ Limitation: +
+Known issues:
diff --git a/doc/html/boost_typetraits/reference/has_right_shift_assign.html b/doc/html/boost_typetraits/reference/has_right_shift_assign.html index adb3ae0..756c9cf 100644 --- a/doc/html/boost_typetraits/reference/has_right_shift_assign.html +++ b/doc/html/boost_typetraits/reference/has_right_shift_assign.html @@ -3,7 +3,7 @@+ Limitation: +
+Known issues:
diff --git a/doc/html/boost_typetraits/reference/has_trivial_assign.html b/doc/html/boost_typetraits/reference/has_trivial_assign.html index 54db782..db769c7 100644 --- a/doc/html/boost_typetraits/reference/has_trivial_assign.html +++ b/doc/html/boost_typetraits/reference/has_trivial_assign.html @@ -3,7 +3,7 @@+ Limitation: +
+Known issues:
diff --git a/doc/html/boost_typetraits/reference/has_unary_plus.html b/doc/html/boost_typetraits/reference/has_unary_plus.html index a0e36b1..c021195 100644 --- a/doc/html/boost_typetraits/reference/has_unary_plus.html +++ b/doc/html/boost_typetraits/reference/has_unary_plus.html @@ -3,7 +3,7 @@+ Limitation: +
+Known issues:
diff --git a/doc/html/boost_typetraits/reference/has_virtual_destructor.html b/doc/html/boost_typetraits/reference/has_virtual_destructor.html index 5c7f197..6a38c61 100644 --- a/doc/html/boost_typetraits/reference/has_virtual_destructor.html +++ b/doc/html/boost_typetraits/reference/has_virtual_destructor.html @@ -3,7 +3,7 @@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)
@@ -212,7 +212,7 @@Last revised: October 07, 2011 at 22:05:54 +0100 |
+Last revised: October 07, 2011 at 23:05:54 +0200 |