diff --git a/boost/template_id.html b/boost/template_id.html index f1697a9..89cb0f5 100644 --- a/boost/template_id.html +++ b/boost/template_id.html @@ -34,7 +34,7 @@ template<typename T> template_index template_id();
Method for constructing template_index
instance for type T. Strips const, volatile and & modifiers from T.
Factory method for constructing template_index
instance for type T. Does not strips const, volatile and & modifiers from T. If T has no const, volatile, & and && modifiers, then returns exactly the same result as in case of calling `template_id<T>()`.
Factory method for constructing template_index
instance for type T. Does not strip const, volatile and & modifiers from T. If T has no const, volatile, & and && modifiers, then returns exactly the same result as in case of calling `template_id<T>()`.
boost::type_id_rtti_only
@@ -34,8 +34,8 @@ template<typename T> type_index type_id_rtti_only(T & rtti_val);Function, that works exactly like C++ typeid(rtti_val) call, but returns boost::type_index
. This method available only with RTTI enabled.
Function, that works exactly like C++ typeid(rtti_val) call, but returns boost::type_index
. This method available only with RTTI enabled. Without RTTI support it won't compile, producing a compile-time error with message: "boost::type_id_rtti_only(T&) requires RTTI"