add doxygen anchors to avoid warnings.
1.1 --- a/src/core/boolean.h Wed Apr 09 12:15:24 2008 -0700
1.2 +++ b/src/core/boolean.h Wed Apr 09 13:03:58 2008 -0700
1.3 @@ -28,6 +28,8 @@
1.4 /**
1.5 * \brief Hold a bool native type
1.6 *
1.7 + * \anchor bool
1.8 + *
1.9 * This class can be used to hold bool variables
1.10 * which must go through the Attribute system.
1.11 */
2.1 --- a/src/core/double.h Wed Apr 09 12:15:24 2008 -0700
2.2 +++ b/src/core/double.h Wed Apr 09 13:03:58 2008 -0700
2.3 @@ -29,6 +29,7 @@
2.4 /**
2.5 * \brief Hold an floating point type
2.6 *
2.7 + * \anchor double
2.8 * This class can be used to hold variables of floating point type
2.9 * such as 'double' or 'float'. The internal format is 'double'.
2.10 */
3.1 --- a/src/core/integer.h Wed Apr 09 12:15:24 2008 -0700
3.2 +++ b/src/core/integer.h Wed Apr 09 13:03:58 2008 -0700
3.3 @@ -29,6 +29,11 @@
3.4 /**
3.5 * \brief Hold a signed integer type
3.6 *
3.7 + * \anchor int8_t
3.8 + * \anchor int16_t
3.9 + * \anchor int32_t
3.10 + * \anchor int64_t
3.11 + *
3.12 * This class can be used to hold variables of signed integer
3.13 * type such as int8_t, int16_t, int32_t, int64_t, or,
3.14 * int, etc.
4.1 --- a/src/core/uinteger.h Wed Apr 09 12:15:24 2008 -0700
4.2 +++ b/src/core/uinteger.h Wed Apr 09 13:03:58 2008 -0700
4.3 @@ -29,6 +29,11 @@
4.4 /**
4.5 * \brief Hold an unsigned integer type
4.6 *
4.7 + * \anchor uint8_t
4.8 + * \anchor uint16_t
4.9 + * \anchor uint32_t
4.10 + * \anchor uint64_t
4.11 + *
4.12 * This class can be used to hold variables of unsigned integer
4.13 * type such as uint8_t, uint16_t, uint32_t, uint64_t, or,
4.14 * unsigned int, etc.