Author: elemings
Date: Mon Jun 16 09:09:03 2008
New Revision: 668215
URL: http://svn.apache.org/viewvc?rev=668215&view=rev
Log:
2008-06-16 Eric Lemings <[EMAIL PROTECTED]>
STDCXX-916
* include/rw/_meta_help.h: Added some missing documentation.
Modified:
stdcxx/branches/4.3.x/include/rw/_meta_help.h
Modified: stdcxx/branches/4.3.x/include/rw/_meta_help.h
URL:
http://svn.apache.org/viewvc/stdcxx/branches/4.3.x/include/rw/_meta_help.h?rev=668215&r1=668214&r2=668215&view=diff
==============================================================================
--- stdcxx/branches/4.3.x/include/rw/_meta_help.h (original)
+++ stdcxx/branches/4.3.x/include/rw/_meta_help.h Mon Jun 16 09:09:03 2008
@@ -35,7 +35,9 @@
_RWSTD_NAMESPACE (__rw) {
/**
- *
+ * @internal
+ * A compile-time integral constant wrapper. This class template
+ * encapsulates an integer constant value for metaprogramming.
*/
template <class _TypeT, _TypeT _Value>
struct __rw_integral_constant
@@ -64,12 +66,14 @@
#endif // _RWSTD_NO_STATIC_CONST_MEMBER_DEFINITION
/**
- *
+ * @internal
+ * Synonym for __rw_integral_constant<bool, true> type.
*/
typedef __rw_integral_constant<bool, true> __rw_true_type;
/**
- *
+ * @internal
+ * Synonym for __rw_integral_constant<bool, false> type.
*/
typedef __rw_integral_constant<bool, false> __rw_false_type;